Search Results for

    Show / Hide Table of Contents

    Class DocumentAnalysisResult

    Inheritance
    object
    OcrDocument
    DocumentAnalysisResult
    Implements
    ITextSource
    Inherited Members
    OcrDocument.GetTextSource()
    object.Equals(object)
    object.Equals(object, object)
    object.GetHashCode()
    object.GetType()
    object.MemberwiseClone()
    object.ReferenceEquals(object, object)
    object.ToString()
    Namespace: Glitch9.AIDevKit.Microsoft.Azure.DocumentIntelligence
    Assembly: Glitch9.AIDevKit.Provider.Microsoft.Azure.dll
    Syntax
    public class DocumentAnalysisResult : OcrDocument, ITextSource

    Properties

    | Edit this page View Source

    ApiVersion

    Required. API version used to produce this result.

    Declaration
    [JsonProperty("apiVersion")]
    public string ApiVersion { get; set; }
    Property Value
    Type Description
    string
    | Edit this page View Source

    Content

    Required. Concatenate string representation of all textual and visual elements in reading order.

    Declaration
    [JsonProperty("content")]
    public string Content { get; set; }
    Property Value
    Type Description
    string
    | Edit this page View Source

    ContentFormat

    Required. Format of the analyze result top-level content.

    Declaration
    [JsonProperty("contentFormat")]
    public DocumentContentFormat ContentFormat { get; set; }
    Property Value
    Type Description
    DocumentContentFormat
    | Edit this page View Source

    Documents

    Required. Extracted documents.

    Declaration
    [JsonProperty("documents")]
    public AnalyzedDocument[] Documents { get; set; }
    Property Value
    Type Description
    AnalyzedDocument[]
    | Edit this page View Source

    Figures

    Required. Extracted figures.

    Declaration
    [JsonProperty("figures")]
    public DocumentFigure[] Figures { get; set; }
    Property Value
    Type Description
    DocumentFigure[]
    | Edit this page View Source

    KeyValuePairs

    Required. Extracted key-value pairs.

    Declaration
    [JsonProperty("keyValuePairs")]
    public DocumentKeyValuePair[] KeyValuePairs { get; set; }
    Property Value
    Type Description
    DocumentKeyValuePair[]
    | Edit this page View Source

    Languages

    Required. Detected languages.

    Declaration
    [JsonProperty("languages")]
    public DocumentLanguage[] Languages { get; set; }
    Property Value
    Type Description
    DocumentLanguage[]
    | Edit this page View Source

    ModelId

    Required. Document model ID used to produce this result.

    Declaration
    [JsonProperty("modelId")]
    public string ModelId { get; set; }
    Property Value
    Type Description
    string
    | Edit this page View Source

    Pages

    Required. Analyzed pages.

    Declaration
    [JsonProperty("pages")]
    public DocumentPage[] Pages { get; set; }
    Property Value
    Type Description
    DocumentPage[]
    | Edit this page View Source

    Paragraphs

    Required. Extracted paragraphs.

    Declaration
    [JsonProperty("paragraphs")]
    public DocumentParagraph[] Paragraphs { get; set; }
    Property Value
    Type Description
    DocumentParagraph[]
    | Edit this page View Source

    Sections

    Required. Extracted sections.

    Declaration
    [JsonProperty("sections")]
    public DocumentSection[] Sections { get; set; }
    Property Value
    Type Description
    DocumentSection[]
    | Edit this page View Source

    StringIndexType

    Required. Method used to compute string offset and length.

    Declaration
    [JsonProperty("stringIndexType")]
    public StringIndexType StringIndexType { get; set; }
    Property Value
    Type Description
    StringIndexType
    | Edit this page View Source

    Styles

    Required. Extracted font styles.

    Declaration
    [JsonProperty("styles")]
    public DocumentStyle[] Styles { get; set; }
    Property Value
    Type Description
    DocumentStyle[]
    | Edit this page View Source

    Tables

    Required. Extracted tables.

    Declaration
    [JsonProperty("tables")]
    public DocumentTable[] Tables { get; set; }
    Property Value
    Type Description
    DocumentTable[]
    | Edit this page View Source

    Text

    Declaration
    [JsonIgnore]
    public override string Text { get; set; }
    Property Value
    Type Description
    string
    Overrides
    OcrDocument.Text
    | Edit this page View Source

    Warnings

    Required. List of warnings encountered.

    Declaration
    [JsonProperty("warnings")]
    public WarningInfo[] Warnings { get; set; }
    Property Value
    Type Description
    WarningInfo[]

    Implements

    ITextSource

    Extension Methods

    ArrayExtensions.ToArrayOrEmpty<T>(T)
    ArrayExtensions.ToArrayOrNull<T>(T)
    EventExtensions.ToDelta<T>(T, string, int, string, bool)
    EventExtensions.ToDone<T>(T, string, int, string)
    EventExtensions.ToEvent<T>(T)
    EventExtensions.UpcastDelta<T1, T2>(T1, string, int, string, bool)
    FallbackExtensions.IsOr<TParent, TChild>(TParent, TChild)
    ResponseCastingExtensions.GetResult<T>(T)
    SystemExtensions.GetName(object)
    • Edit this page
    • View Source
    In this article
    Back to top AI DevKit Documentation