Show / Hide Table of Contents

Class Document.Types.Page.Types.DetectedLanguage

Detected language for a structural component.

Inheritance
System.Object
Document.Types.Page.Types.DetectedLanguage
Implements
IMessage<Document.Types.Page.Types.DetectedLanguage>
System.IEquatable<Document.Types.Page.Types.DetectedLanguage>
IDeepCloneable<Document.Types.Page.Types.DetectedLanguage>
Google.Protobuf.IBufferMessage
IMessage
Inherited Members
System.Object.ToString()
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Google.Cloud.DocumentAI.V1Beta2
Assembly: Google.Cloud.DocumentAI.V1Beta2.dll
Syntax
public sealed class DetectedLanguage : IMessage<Document.Types.Page.Types.DetectedLanguage>, IEquatable<Document.Types.Page.Types.DetectedLanguage>, IDeepCloneable<Document.Types.Page.Types.DetectedLanguage>, IBufferMessage, IMessage

Constructors

DetectedLanguage()

Declaration
public DetectedLanguage()

DetectedLanguage(Document.Types.Page.Types.DetectedLanguage)

Declaration
public DetectedLanguage(Document.Types.Page.Types.DetectedLanguage other)
Parameters
Type Name Description
Document.Types.Page.Types.DetectedLanguage other

Properties

Confidence

Confidence of detected language. Range [0, 1].

Declaration
public float Confidence { get; set; }
Property Value
Type Description
System.Single

LanguageCode

The BCP-47 language code, such as "en-US" or "sr-Latn". For more information, see http://www.unicode.org/reports/tr35/#Unicode_locale_identifier.

Declaration
public string LanguageCode { get; set; }
Property Value
Type Description
System.String
Back to top