Class DocumentAnalyzeOperation
Inheritance
DocumentAnalyzeOperation
Assembly: Glitch9.AIDevKit.Provider.Microsoft.Azure.dll
Syntax
public class DocumentAnalyzeOperation : IPollingJob
Properties
|
Edit this page
View Source
AnalyzeResult
Required. Document analysis result.
Declaration
[JsonProperty("analyzeResult")]
public DocumentAnalysisResult AnalyzeResult { get; set; }
Property Value
|
Edit this page
View Source
CreatedDateTime
Required. Date and time (UTC) when the analyze operation was submitted.
Declaration
[JsonProperty("createdDateTime")]
public DateTime CreatedDateTime { get; set; }
Property Value
|
Edit this page
View Source
Error
Required. Encountered error during document analysis.
Declaration
[JsonProperty("error")]
public ErrorInfo Error { get; set; }
Property Value
|
Edit this page
View Source
LastUpdatedDateTime
Required. Date and time (UTC) when the status was last updated.
Declaration
[JsonProperty("lastUpdatedDateTime")]
public DateTime LastUpdatedDateTime { get; set; }
Property Value
|
Edit this page
View Source
Status
Required. Operation status. notStarted, running, succeeded, or failed
Declaration
[JsonProperty("status")]
public OperationStatus Status { get; set; }
Property Value
Methods
|
Edit this page
View Source
IsCompleted()
Declaration
public bool IsCompleted()
Returns
|
Edit this page
View Source
TryGetError(out string)
Declaration
public bool TryGetError(out string error)
Parameters
| Type |
Name |
Description |
| string |
error |
|
Returns
Implements
Extension Methods