你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn

AnalyzeBatchDocumentsOptions Constructors

Definition

Overloads

AnalyzeBatchDocumentsOptions(String, BlobContentSource, Uri)

Initializes a new instance of AnalyzeBatchDocumentsOptions.

AnalyzeBatchDocumentsOptions(String, BlobFileListContentSource, Uri)

Initializes a new instance of AnalyzeBatchDocumentsOptions.

AnalyzeBatchDocumentsOptions(String, BlobContentSource, Uri)

Source:
AnalyzeBatchDocumentsOptions.cs

Initializes a new instance of AnalyzeBatchDocumentsOptions.

public AnalyzeBatchDocumentsOptions (string modelId, Azure.AI.DocumentIntelligence.BlobContentSource blobSource, Uri resultContainerUri);
new Azure.AI.DocumentIntelligence.AnalyzeBatchDocumentsOptions : string * Azure.AI.DocumentIntelligence.BlobContentSource * Uri -> Azure.AI.DocumentIntelligence.AnalyzeBatchDocumentsOptions
Public Sub New (modelId As String, blobSource As BlobContentSource, resultContainerUri As Uri)

Parameters

modelId
String

Unique document model name.

blobSource
BlobContentSource

Azure Blob Storage location containing the batch documents.

resultContainerUri
Uri

Azure Blob Storage container URL where analyze result files will be stored.

Exceptions

modelId, blobSource, or resultContainerUri is null.

modelId is an empty string, and was expected to be non-empty.

Applies to

AnalyzeBatchDocumentsOptions(String, BlobFileListContentSource, Uri)

Source:
AnalyzeBatchDocumentsOptions.cs

Initializes a new instance of AnalyzeBatchDocumentsOptions.

public AnalyzeBatchDocumentsOptions (string modelId, Azure.AI.DocumentIntelligence.BlobFileListContentSource blobFileListSource, Uri resultContainerUri);
new Azure.AI.DocumentIntelligence.AnalyzeBatchDocumentsOptions : string * Azure.AI.DocumentIntelligence.BlobFileListContentSource * Uri -> Azure.AI.DocumentIntelligence.AnalyzeBatchDocumentsOptions
Public Sub New (modelId As String, blobFileListSource As BlobFileListContentSource, resultContainerUri As Uri)

Parameters

modelId
String

Unique document model name.

blobFileListSource
BlobFileListContentSource

Azure Blob Storage file list specifying the batch documents.

resultContainerUri
Uri

Azure Blob Storage container URL where analyze result files will be stored.

Exceptions

modelId, blobFileListSource, or resultContainerUri is null.

modelId is an empty string, and was expected to be non-empty.

Applies to