Class DocumentLanguage
An object representing the detected language for a given text span.
Inheritance
System.Object
DocumentLanguage
Namespace: System.Dynamic.ExpandoObject
Assembly: Azure.AI.FormRecognizer.dll
Syntax
public class DocumentLanguage
Properties
Confidence
Confidence of correctly identifying the language.
Declaration
public float Confidence { get; }
Property Value
System.Single
|
Locale
Detected language. Value may an ISO 639-1 language code (ex. "en", "fr") or BCP 47 language tag (ex. "zh-Hans").
Declaration
public string Locale { get; }
Property Value
System.String
|
Spans
Location of the text elements in the concatenated content the language applies to.
Declaration
public System.Collections.Generic.IReadOnlyList<Azure.AI.FormRecognizer.DocumentAnalysis.DocumentSpan> Spans { get; }
Property Value
System.Collections.Generic.IReadOnlyList<DocumentSpan>
|