DocumentIntelligenceModelFactory.AnalyzeBatchResult Method

Definition

Initializes a new instance of AnalyzeBatchResult.

public static Azure.AI.DocumentIntelligence.AnalyzeBatchResult AnalyzeBatchResult (int succeededCount = 0, int failedCount = 0, int skippedCount = 0, System.Collections.Generic.IEnumerable<Azure.AI.DocumentIntelligence.AnalyzeBatchOperationDetail> details = default);
static member AnalyzeBatchResult : int * int * int * seq<Azure.AI.DocumentIntelligence.AnalyzeBatchOperationDetail> -> Azure.AI.DocumentIntelligence.AnalyzeBatchResult
Public Shared Function AnalyzeBatchResult (Optional succeededCount As Integer = 0, Optional failedCount As Integer = 0, Optional skippedCount As Integer = 0, Optional details As IEnumerable(Of AnalyzeBatchOperationDetail) = Nothing) As AnalyzeBatchResult

Parameters

succeededCount
Int32

Number of documents that completed with status succeeded.

failedCount
Int32

Number of documents that completed with status failed.

skippedCount
Int32

Number of documents that completed with status skipped.

details
IEnumerable<AnalyzeBatchOperationDetail>

Operation detail for each document in the batch.

Returns

A new AnalyzeBatchResult instance for mocking.

Applies to