| | 1 | | // Copyright (c) Microsoft Corporation. All rights reserved. |
| | 2 | | // Licensed under the MIT License. |
| | 3 | |
|
| | 4 | | namespace Azure.AI.FormRecognizer |
| | 5 | | { |
| | 6 | | /// <summary> |
| | 7 | | /// The set of options that can be specified when calling a recognition content method |
| | 8 | | /// to configure the behavior of the request. |
| | 9 | | /// </summary> |
| | 10 | | public class RecognizeContentOptions |
| | 11 | | { |
| | 12 | | /// <summary> |
| | 13 | | /// Initializes a new instance of the <see cref="RecognizeContentOptions"/> class. |
| | 14 | | /// </summary> |
| 80 | 15 | | public RecognizeContentOptions() |
| | 16 | | { |
| 80 | 17 | | } |
| | 18 | |
|
| | 19 | | /// <summary> |
| | 20 | | /// When set, specifies the content type for uploaded streams and skips automatic |
| | 21 | | /// content type detection. |
| | 22 | | /// </summary> |
| 52 | 23 | | public FormContentType? ContentType { get; set; } = null; |
| | 24 | | } |
| | 25 | | } |