DocumentIntelligenceModelFactory.AnalyzeBatchResult Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
AnalyzeBatchResult(Int32, Int32, Int32, IEnumerable<AnalyzeBatchOperationDetail>) |
Initializes a new instance of AnalyzeBatchResult. |
AnalyzeBatchResult(Int32, Int32, Int32, IEnumerable<AnalyzeBatchResultDetails>) |
Initializes a new instance of AnalyzeBatchResult. |
AnalyzeBatchResult(Int32, Int32, Int32, IEnumerable<AnalyzeBatchOperationDetail>)
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
AnalyzeBatchResult(Int32, Int32, Int32, IEnumerable<AnalyzeBatchResultDetails>)
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.AnalyzeBatchResultDetails> details = default);
static member AnalyzeBatchResult : int * int * int * seq<Azure.AI.DocumentIntelligence.AnalyzeBatchResultDetails> -> 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 AnalyzeBatchResultDetails) = 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<AnalyzeBatchResultDetails>
Operation detail for each document in the batch.
Returns
A new AnalyzeBatchResult instance for mocking.
Applies to
Azure SDK for .NET