diff --git a/README.md b/README.md index d210baa..7a60514 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ [![Nuget](https://img.shields.io/nuget/v/Aspose.BarCode-Cloud)](https://www.nuget.org/packages/Aspose.BarCode-Cloud/) - API version: 4.0 -- SDK version: 25.6.0 +- SDK version: 25.7.0 ## SDK and API Version Compatibility: @@ -224,10 +224,10 @@ Class | Method | HTTP request | Description *GenerateApi* | [**Generate**](docs/GenerateApi.md#generate) | **GET** /barcode/generate/{barcodeType} | Generate barcode using GET request with parameters in route and query string. *GenerateApi* | [**GenerateBody**](docs/GenerateApi.md#generatebody) | **POST** /barcode/generate-body | Generate barcode using POST request with parameters in body in json or xml format. *GenerateApi* | [**GenerateMultipart**](docs/GenerateApi.md#generatemultipart) | **POST** /barcode/generate-multipart | Generate barcode using POST request with parameters in multipart form. -*RecognizeApi* | [**Recognize**](docs/RecognizeApi.md#recognize) | **GET** /barcode/recognize | Recognize barcode from file on server using GET requests with parameters in route and query string. +*RecognizeApi* | [**Recognize**](docs/RecognizeApi.md#recognize) | **GET** /barcode/recognize | Recognize barcode from file on server in the Internet using GET requests with parameter in query string. For recognizing files from your hard drive use `recognize-body` or `recognize-multipart` endpoints instead. *RecognizeApi* | [**RecognizeBase64**](docs/RecognizeApi.md#recognizebase64) | **POST** /barcode/recognize-body | Recognize barcode from file in request body using POST requests with parameters in body in json or xml format. *RecognizeApi* | [**RecognizeMultipart**](docs/RecognizeApi.md#recognizemultipart) | **POST** /barcode/recognize-multipart | Recognize barcode from file in request body using POST requests with parameters in multipart form. -*ScanApi* | [**Scan**](docs/ScanApi.md#scan) | **GET** /barcode/scan | Scan barcode from file on server using GET requests with parameter in query string. +*ScanApi* | [**Scan**](docs/ScanApi.md#scan) | **GET** /barcode/scan | Scan barcode from file on server in the Internet using GET requests with parameter in query string. For scaning files from your hard drive use `scan-body` or `scan-multipart` endpoints instead. *ScanApi* | [**ScanBase64**](docs/ScanApi.md#scanbase64) | **POST** /barcode/scan-body | Scan barcode from file in request body using POST requests with parameter in body in json or xml format. *ScanApi* | [**ScanMultipart**](docs/ScanApi.md#scanmultipart) | **POST** /barcode/scan-multipart | Scan barcode from file in request body using POST requests with parameter in multipart form. diff --git a/docs/RecognizeApi.md b/docs/RecognizeApi.md index 700acd7..1c59f33 100644 --- a/docs/RecognizeApi.md +++ b/docs/RecognizeApi.md @@ -4,7 +4,7 @@ All URIs are relative to ** Method | HTTP request | Description ------ | ------------ | ----------- -[**Recognize**](RecognizeApi.md#recognize) | **GET** /barcode/recognize | Recognize barcode from file on server using GET requests with parameters in route and query string. +[**Recognize**](RecognizeApi.md#recognize) | **GET** /barcode/recognize | Recognize barcode from file on server in the Internet using GET requests with parameter in query string. For recognizing files from your hard drive use `recognize-body` or `recognize-multipart` endpoints instead. [**RecognizeBase64**](RecognizeApi.md#recognizebase64) | **POST** /barcode/recognize-body | Recognize barcode from file in request body using POST requests with parameters in body in json or xml format. [**RecognizeMultipart**](RecognizeApi.md#recognizemultipart) | **POST** /barcode/recognize-multipart | Recognize barcode from file in request body using POST requests with parameters in multipart form. @@ -15,7 +15,7 @@ Method | HTTP request | Description BarcodeResponseList Recognize (DecodeBarcodeType barcodeType, string fileUrl, RecognitionMode? recognitionMode = null, RecognitionImageKind? recognitionImageKind = null) ``` -Recognize barcode from file on server using GET requests with parameters in route and query string. +Recognize barcode from file on server in the Internet using GET requests with parameter in query string. For recognizing files from your hard drive use `recognize-body` or `recognize-multipart` endpoints instead. ### Parameters diff --git a/docs/ScanApi.md b/docs/ScanApi.md index b1b3fe3..80ea8de 100644 --- a/docs/ScanApi.md +++ b/docs/ScanApi.md @@ -4,7 +4,7 @@ All URIs are relative to ** Method | HTTP request | Description ------ | ------------ | ----------- -[**Scan**](ScanApi.md#scan) | **GET** /barcode/scan | Scan barcode from file on server using GET requests with parameter in query string. +[**Scan**](ScanApi.md#scan) | **GET** /barcode/scan | Scan barcode from file on server in the Internet using GET requests with parameter in query string. For scaning files from your hard drive use `scan-body` or `scan-multipart` endpoints instead. [**ScanBase64**](ScanApi.md#scanbase64) | **POST** /barcode/scan-body | Scan barcode from file in request body using POST requests with parameter in body in json or xml format. [**ScanMultipart**](ScanApi.md#scanmultipart) | **POST** /barcode/scan-multipart | Scan barcode from file in request body using POST requests with parameter in multipart form. @@ -15,7 +15,7 @@ Method | HTTP request | Description BarcodeResponseList Scan (string fileUrl) ``` -Scan barcode from file on server using GET requests with parameter in query string. +Scan barcode from file on server in the Internet using GET requests with parameter in query string. For scaning files from your hard drive use `scan-body` or `scan-multipart` endpoints instead. ### Parameters diff --git a/examples/GenerateQR/GenerateQR.csproj b/examples/GenerateQR/GenerateQR.csproj index ad2fae2..460fef9 100644 --- a/examples/GenerateQR/GenerateQR.csproj +++ b/examples/GenerateQR/GenerateQR.csproj @@ -7,7 +7,7 @@ - + diff --git a/examples/ReadQR/ReadQR.csproj b/examples/ReadQR/ReadQR.csproj index ad2fae2..460fef9 100644 --- a/examples/ReadQR/ReadQR.csproj +++ b/examples/ReadQR/ReadQR.csproj @@ -7,7 +7,7 @@ - + diff --git a/snippets/Snippets.csproj b/snippets/Snippets.csproj index ad2fae2..460fef9 100644 --- a/snippets/Snippets.csproj +++ b/snippets/Snippets.csproj @@ -7,7 +7,7 @@ - + diff --git a/snippets/dependency.xml b/snippets/dependency.xml index 78b2114..de7a003 100644 --- a/snippets/dependency.xml +++ b/snippets/dependency.xml @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/src/Api/RecognizeApi.cs b/src/Api/RecognizeApi.cs index 1893366..295f0b8 100644 --- a/src/Api/RecognizeApi.cs +++ b/src/Api/RecognizeApi.cs @@ -84,7 +84,7 @@ public RecognizeApi(string clientSecret, string clientId) { } /// - /// Recognize barcode from file on server using GET requests with parameters in route and query string. + /// Recognize barcode from file on server in the Internet using GET requests with parameter in query string. For recognizing files from your hard drive use `recognize-body` or `recognize-multipart` endpoints instead. /// /// Type of barcode to recognize /// Url to barcode image diff --git a/src/Api/ScanApi.cs b/src/Api/ScanApi.cs index 00a6571..12aefc1 100644 --- a/src/Api/ScanApi.cs +++ b/src/Api/ScanApi.cs @@ -84,7 +84,7 @@ public ScanApi(string clientSecret, string clientId) { } /// - /// Scan barcode from file on server using GET requests with parameter in query string. + /// Scan barcode from file on server in the Internet using GET requests with parameter in query string. For scaning files from your hard drive use `scan-body` or `scan-multipart` endpoints instead. /// /// Url to barcode image /// diff --git a/src/Aspose.BarCode.Cloud.Sdk.csproj b/src/Aspose.BarCode.Cloud.Sdk.csproj index 4c7febc..bc66fe9 100644 --- a/src/Aspose.BarCode.Cloud.Sdk.csproj +++ b/src/Aspose.BarCode.Cloud.Sdk.csproj @@ -24,11 +24,11 @@ Aspose.Barcode for Cloud allows you to control all aspects of the image and barc Aspose.BarCode-Cloud Aspose.BarCode Cloud SDK for .NET PackageIcon.png - 25.6.0 + 25.7.0 Aspose - 25.6.0.0 + 25.7.0.0 README.md - https://github.com/aspose-barcode-cloud/aspose-barcode-cloud-dotnet/releases/tag/v25.6.0 + https://github.com/aspose-barcode-cloud/aspose-barcode-cloud-dotnet/releases/tag/v25.7.0 true LICENSE.txt true diff --git a/src/Interfaces/IRecognizeApi.cs b/src/Interfaces/IRecognizeApi.cs index 2ffd211..56f5580 100644 --- a/src/Interfaces/IRecognizeApi.cs +++ b/src/Interfaces/IRecognizeApi.cs @@ -13,7 +13,7 @@ namespace Aspose.BarCode.Cloud.Sdk.Interfaces public interface IRecognizeApi { /// - /// Recognize barcode from file on server using GET requests with parameters in route and query string. + /// Recognize barcode from file on server in the Internet using GET requests with parameter in query string. For recognizing files from your hard drive use `recognize-body` or `recognize-multipart` endpoints instead. /// /// /// diff --git a/src/Interfaces/IScanApi.cs b/src/Interfaces/IScanApi.cs index 74cc041..29c62a7 100644 --- a/src/Interfaces/IScanApi.cs +++ b/src/Interfaces/IScanApi.cs @@ -13,7 +13,7 @@ namespace Aspose.BarCode.Cloud.Sdk.Interfaces public interface IScanApi { /// - /// Scan barcode from file on server using GET requests with parameter in query string. + /// Scan barcode from file on server in the Internet using GET requests with parameter in query string. For scaning files from your hard drive use `scan-body` or `scan-multipart` endpoints instead. /// /// ///