Skip to content

Commit cad6a16

Browse files
authored
Release 25.7 (#109)
1 parent 68af368 commit cad6a16

File tree

12 files changed

+18
-18
lines changed

12 files changed

+18
-18
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
[![Nuget](https://img.shields.io/nuget/v/Aspose.BarCode-Cloud)](https://www.nuget.org/packages/Aspose.BarCode-Cloud/)
77

88
- API version: 4.0
9-
- SDK version: 25.6.0
9+
- SDK version: 25.7.0
1010

1111
## SDK and API Version Compatibility:
1212

@@ -224,10 +224,10 @@ Class | Method | HTTP request | Description
224224
*GenerateApi* | [**Generate**](docs/GenerateApi.md#generate) | **GET** /barcode/generate/{barcodeType} | Generate barcode using GET request with parameters in route and query string.
225225
*GenerateApi* | [**GenerateBody**](docs/GenerateApi.md#generatebody) | **POST** /barcode/generate-body | Generate barcode using POST request with parameters in body in json or xml format.
226226
*GenerateApi* | [**GenerateMultipart**](docs/GenerateApi.md#generatemultipart) | **POST** /barcode/generate-multipart | Generate barcode using POST request with parameters in multipart form.
227-
*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.
227+
*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.
228228
*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.
229229
*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.
230-
*ScanApi* | [**Scan**](docs/ScanApi.md#scan) | **GET** /barcode/scan | Scan barcode from file on server using GET requests with parameter in query string.
230+
*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.
231231
*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.
232232
*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.
233233

docs/RecognizeApi.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ All URIs are relative to *<https://api.aspose.cloud/v4.0>*
44

55
Method | HTTP request | Description
66
------ | ------------ | -----------
7-
[**Recognize**](RecognizeApi.md#recognize) | **GET** /barcode/recognize | Recognize barcode from file on server using GET requests with parameters in route and query string.
7+
[**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 &#x60;recognize-body&#x60; or &#x60;recognize-multipart&#x60; endpoints instead.
88
[**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.
99
[**RecognizeMultipart**](RecognizeApi.md#recognizemultipart) | **POST** /barcode/recognize-multipart | Recognize barcode from file in request body using POST requests with parameters in multipart form.
1010

@@ -15,7 +15,7 @@ Method | HTTP request | Description
1515
BarcodeResponseList Recognize (DecodeBarcodeType barcodeType, string fileUrl, RecognitionMode? recognitionMode = null, RecognitionImageKind? recognitionImageKind = null)
1616
```
1717

18-
Recognize barcode from file on server using GET requests with parameters in route and query string.
18+
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.
1919

2020
### Parameters
2121

docs/ScanApi.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ All URIs are relative to *<https://api.aspose.cloud/v4.0>*
44

55
Method | HTTP request | Description
66
------ | ------------ | -----------
7-
[**Scan**](ScanApi.md#scan) | **GET** /barcode/scan | Scan barcode from file on server using GET requests with parameter in query string.
7+
[**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 &#x60;scan-body&#x60; or &#x60;scan-multipart&#x60; endpoints instead.
88
[**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.
99
[**ScanMultipart**](ScanApi.md#scanmultipart) | **POST** /barcode/scan-multipart | Scan barcode from file in request body using POST requests with parameter in multipart form.
1010

@@ -15,7 +15,7 @@ Method | HTTP request | Description
1515
BarcodeResponseList Scan (string fileUrl)
1616
```
1717

18-
Scan barcode from file on server using GET requests with parameter in query string.
18+
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.
1919

2020
### Parameters
2121

examples/GenerateQR/GenerateQR.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
</PropertyGroup>
88

99
<ItemGroup>
10-
<PackageReference Include="Aspose.BarCode-Cloud" Version="25.6.0" />
10+
<PackageReference Include="Aspose.BarCode-Cloud" Version="25.7.0" />
1111
</ItemGroup>
1212

1313
</Project>

examples/ReadQR/ReadQR.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
</PropertyGroup>
88

99
<ItemGroup>
10-
<PackageReference Include="Aspose.BarCode-Cloud" Version="25.6.0" />
10+
<PackageReference Include="Aspose.BarCode-Cloud" Version="25.7.0" />
1111
</ItemGroup>
1212

1313
</Project>

snippets/Snippets.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
</PropertyGroup>
88

99
<ItemGroup>
10-
<PackageReference Include="Aspose.BarCode-Cloud" Version="25.6.0" />
10+
<PackageReference Include="Aspose.BarCode-Cloud" Version="25.7.0" />
1111
</ItemGroup>
1212

1313
</Project>

snippets/dependency.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
<PackageReference Include="Aspose.BarCode-Cloud" Version="25.6.0" />
1+
<PackageReference Include="Aspose.BarCode-Cloud" Version="25.7.0" />

src/Api/RecognizeApi.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ public RecognizeApi(string clientSecret, string clientId)
8484
{
8585
}
8686
/// <summary>
87-
/// Recognize barcode from file on server using GET requests with parameters in route and query string.
87+
/// 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 &#x60;recognize-body&#x60; or &#x60;recognize-multipart&#x60; endpoints instead.
8888
/// </summary>
8989
/// <param name="barcodeType">Type of barcode to recognize</param>
9090
/// <param name="fileUrl">Url to barcode image</param>

src/Api/ScanApi.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ public ScanApi(string clientSecret, string clientId)
8484
{
8585
}
8686
/// <summary>
87-
/// Scan barcode from file on server using GET requests with parameter in query string.
87+
/// 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 &#x60;scan-body&#x60; or &#x60;scan-multipart&#x60; endpoints instead.
8888
/// </summary>
8989
/// <param name="fileUrl">Url to barcode image</param>
9090
/// <param name="cancellationToken"></param>

src/Aspose.BarCode.Cloud.Sdk.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,11 @@ Aspose.Barcode for Cloud allows you to control all aspects of the image and barc
2424
<PackageId>Aspose.BarCode-Cloud</PackageId>
2525
<Product>Aspose.BarCode Cloud SDK for .NET</Product>
2626
<PackageIcon>PackageIcon.png</PackageIcon>
27-
<Version>25.6.0</Version>
27+
<Version>25.7.0</Version>
2828
<Authors>Aspose</Authors>
29-
<AssemblyVersion>25.6.0.0</AssemblyVersion>
29+
<AssemblyVersion>25.7.0.0</AssemblyVersion>
3030
<PackageReadmeFile>README.md</PackageReadmeFile>
31-
<PackageReleaseNotes>https://github.com/aspose-barcode-cloud/aspose-barcode-cloud-dotnet/releases/tag/v25.6.0</PackageReleaseNotes>
31+
<PackageReleaseNotes>https://github.com/aspose-barcode-cloud/aspose-barcode-cloud-dotnet/releases/tag/v25.7.0</PackageReleaseNotes>
3232
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
3333
<PackageLicenseFile>LICENSE.txt</PackageLicenseFile>
3434
<GenerateDocumentationFile>true</GenerateDocumentationFile>

0 commit comments

Comments
 (0)