Iyzipay Dotnet Versions Save

iyzipay api .net client

v2.1.45

1 year ago

version 2.1.45

v2.1.44

1 year ago

version 2.1.44

v2.1.42

1 year ago

version 2.1.42

v2.1.41

1 year ago

version 2.1.41

v2.1.40

1 year ago

version 2.1.40

v2.1.39

3 years ago

Version 2.1.39 Release :

  • partial refund added

v2.1.38

3 years ago

Version 2.1.38 Release :

  • Commission field added on bin number and installment responses

v2.1.37

4 years ago

Version 2.1.37 Release :

  • Subscription related endpoints are added

v2.1.36

4 years ago

version 2.1.36

v2.1.33

4 years ago

Version 2.1.33 Release :

  • Functional tests are added under the Iyzipay.Tests project and they are running for net45, core 1.1 and core 2.0 environments on each commit
  • HttpClient used as single instance based on this link "https://docs.microsoft.com/en-us/dotnet/api/system.net.http.httpclient?redirectedfrom=MSDN&view=netframework-4.8#remarks"
  • After the core support; net45, net standard 1.3 and net standard 2.0 packages available
  • Added card management functionality
  • Newtonsoft version change;

    For .Net Framework usage, decimal deserialized to string with trim "0" operation from the end by newtonsoft library.

    // true for .net 45
    bool isEqual = payment.IyziCommissionRateAmount.Equals("0.028875")
    

    For .Net Standard usage, decimal deserialized to string without trim operation by newtonsoft library.

    // false for .net standard
    bool isEqual = payment.IyziCommissionRateAmount.Equals("0.028875");
    // true for .net standard
    bool isEqual = payment.IyziCommissionRateAmount.Equals("0.02887500");