Class AnalyzeResult
Represents one or more documents that have been analyzed by a trained or prebuilt model.
Inheritance
System.Object
AnalyzeResult
Namespace: System.Dynamic.ExpandoObject
Assembly: Azure.AI.FormRecognizer.dll
Syntax
public class AnalyzeResult
Properties
Content
Concatenate string representation of all textual and visual elements in reading order.
Declaration
public string Content { get; }
Property Value
System.String
|
Documents
Extracted documents.
Declaration
public System.Collections.Generic.IReadOnlyList<Azure.AI.FormRecognizer.DocumentAnalysis.AnalyzedDocument> Documents { get; }
Property Value
System.Collections.Generic.IReadOnlyList<AnalyzedDocument>
|
KeyValuePairs
Extracted key-value pairs.
Declaration
public System.Collections.Generic.IReadOnlyList<Azure.AI.FormRecognizer.DocumentAnalysis.DocumentKeyValuePair> KeyValuePairs { get; }
Property Value
System.Collections.Generic.IReadOnlyList<DocumentKeyValuePair>
|
Languages
Detected languages.
Declaration
public System.Collections.Generic.IReadOnlyList<Azure.AI.FormRecognizer.DocumentAnalysis.DocumentLanguage> Languages { get; }
Property Value
System.Collections.Generic.IReadOnlyList<DocumentLanguage>
|
ModelId
Model ID used to produce this result.
Declaration
public string ModelId { get; }
Property Value
System.String
|
Pages
Analyzed pages.
Declaration
public System.Collections.Generic.IReadOnlyList<Azure.AI.FormRecognizer.DocumentAnalysis.DocumentPage> Pages { get; }
Property Value
System.Collections.Generic.IReadOnlyList<DocumentPage>
|
Paragraphs
Extracted paragraphs.
Declaration
public System.Collections.Generic.IReadOnlyList<Azure.AI.FormRecognizer.DocumentAnalysis.DocumentParagraph> Paragraphs { get; }
Property Value
System.Collections.Generic.IReadOnlyList<DocumentParagraph>
|
Styles
Extracted font styles.
Declaration
public System.Collections.Generic.IReadOnlyList<Azure.AI.FormRecognizer.DocumentAnalysis.DocumentStyle> Styles { get; }
Property Value
System.Collections.Generic.IReadOnlyList<DocumentStyle>
|
Tables
Extracted tables.
Declaration
public System.Collections.Generic.IReadOnlyList<Azure.AI.FormRecognizer.DocumentAnalysis.DocumentTable> Tables { get; }
Property Value
System.Collections.Generic.IReadOnlyList<DocumentTable>
|