You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: sdk/formrecognizer/Azure.AI.FormRecognizer/CHANGELOG.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,6 +4,7 @@
4
4
5
5
### New Features
6
6
- Expanded the set of document languages that can be provided to the `StartRecognizeContent` API.
7
+
- Added property `Pages` to `RecognizeBusinessCardsOptions`, `RecognizeCustomFormsOptions`, `RecognizeInvoicesOptions`, and `RecognizeReceiptsOptions` to specify the page numbers to recognize.
7
8
8
9
### Breaking changes
9
10
- The client defaults to the latest supported service version, which currently is `2.1-preview.3`.
/// Custom page numbers for multi-page documents(PDF/TIFF). Input the page numbers
46
+
/// and/or ranges of pages you want to get in the result. For a range of pages, use a hyphen, like
47
+
/// `Pages = { "1-3", "5-6" }`. Separate each page number or range with a comma.
48
+
/// </para>
49
+
/// <para>
50
+
/// Although this collection cannot be set, it can be modified.
51
+
/// See <a href="https://docs.microsoft.com/dotnet/csharp/programming-guide/classes-and-structs/object-and-collection-initializers#collection-initializers">collection initializer</a>.
Copy file name to clipboardExpand all lines: sdk/formrecognizer/Azure.AI.FormRecognizer/src/RecognizeCustomFormsOptions.cs
+15Lines changed: 15 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,8 @@
1
1
// Copyright (c) Microsoft Corporation. All rights reserved.
2
2
// Licensed under the MIT License.
3
3
4
+
usingSystem.Collections.Generic;
5
+
4
6
namespaceAzure.AI.FormRecognizer
5
7
{
6
8
/// <summary>
@@ -31,5 +33,18 @@ public RecognizeCustomFormsOptions()
31
33
/// content type detection.
32
34
/// </summary>
33
35
publicFormContentType?ContentType{get;set;}
36
+
37
+
/// <summary>
38
+
/// <para>
39
+
/// Custom page numbers for multi-page documents(PDF/TIFF). Input the page numbers
40
+
/// and/or ranges of pages you want to get in the result. For a range of pages, use a hyphen, like
41
+
/// `Pages = { "1-3", "5-6" }`. Separate each page number or range with a comma.
42
+
/// </para>
43
+
/// <para>
44
+
/// Although this collection cannot be set, it can be modified.
45
+
/// See <a href="https://docs.microsoft.com/dotnet/csharp/programming-guide/classes-and-structs/object-and-collection-initializers#collection-initializers">collection initializer</a>.
Copy file name to clipboardExpand all lines: sdk/formrecognizer/Azure.AI.FormRecognizer/src/RecognizeInvoicesOptions.cs
+15Lines changed: 15 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,8 @@
1
1
// Copyright (c) Microsoft Corporation. All rights reserved.
2
2
// Licensed under the MIT License.
3
3
4
+
usingSystem.Collections.Generic;
5
+
4
6
namespaceAzure.AI.FormRecognizer
5
7
{
6
8
/// <summary>
@@ -37,5 +39,18 @@ public RecognizeInvoicesOptions()
37
39
/// Supported locales include: en-US.
38
40
/// </summary>
39
41
publicFormRecognizerLocale?Locale{get;set;}
42
+
43
+
/// <summary>
44
+
/// <para>
45
+
/// Custom page numbers for multi-page documents(PDF/TIFF). Input the page numbers
46
+
/// and/or ranges of pages you want to get in the result. For a range of pages, use a hyphen, like
47
+
/// `Pages = { "1-3", "5-6" }`. Separate each page number or range with a comma.
48
+
/// </para>
49
+
/// <para>
50
+
/// Although this collection cannot be set, it can be modified.
51
+
/// See <a href="https://docs.microsoft.com/dotnet/csharp/programming-guide/classes-and-structs/object-and-collection-initializers#collection-initializers">collection initializer</a>.
/// Custom page numbers for multi-page documents(PDF/TIFF). Input the page numbers
46
+
/// and/or ranges of pages you want to get in the result. For a range of pages, use a hyphen, like
47
+
/// `Pages = { "1-3", "5-6" }`. Separate each page number or range with a comma.
48
+
/// </para>
49
+
/// <para>
50
+
/// Although this collection cannot be set, it can be modified.
51
+
/// See <a href="https://docs.microsoft.com/dotnet/csharp/programming-guide/classes-and-structs/object-and-collection-initializers#collection-initializers">collection initializer</a>.
0 commit comments