Class AnalyzedDocument
An object describing the location and semantic content of a document.
Inheritance
System.Object
AnalyzedDocument
Namespace: System.Dynamic.ExpandoObject
Assembly: Azure.AI.FormRecognizer.dll
Syntax
public class AnalyzedDocument
Properties
BoundingRegions
Bounding regions covering the document.
Declaration
public System.Collections.Generic.IReadOnlyList<Azure.AI.FormRecognizer.DocumentAnalysis.BoundingRegion> BoundingRegions { get; }
Property Value
System.Collections.Generic.IReadOnlyList<BoundingRegion>
|
Confidence
Confidence of correctly extracting the document.
Declaration
public float Confidence { get; }
Property Value
System.Single
|
DocType
Document type.
Declaration
public string DocType { get; }
Property Value
System.String
|
Fields
Dictionary of named field values.
Declaration
public System.Collections.Generic.IReadOnlyDictionary<string,Azure.AI.FormRecognizer.DocumentAnalysis.DocumentField> Fields { get; }
Property Value
System.Collections.Generic.IReadOnlyDictionary<System.String,DocumentField>
|
Spans
Location of the document in the reading order concatenated content.
Declaration
public System.Collections.Generic.IReadOnlyList<Azure.AI.FormRecognizer.DocumentAnalysis.DocumentSpan> Spans { get; }
Property Value
System.Collections.Generic.IReadOnlyList<DocumentSpan>
|