Class AnalyzeSyntaxResponse (2.3.0)

public sealed class AnalyzeSyntaxResponse : IMessage<AnalyzeSyntaxResponse>, IEquatable<AnalyzeSyntaxResponse>, IDeepCloneable<AnalyzeSyntaxResponse>, IBufferMessage, IMessage

The syntax analysis response message.

Inheritance

Object > AnalyzeSyntaxResponse

Namespace

Google.Cloud.Language.V1

Assembly

Google.Cloud.Language.V1.dll

Constructors

AnalyzeSyntaxResponse()

public AnalyzeSyntaxResponse()

AnalyzeSyntaxResponse(AnalyzeSyntaxResponse)

public AnalyzeSyntaxResponse(AnalyzeSyntaxResponse other)
Parameter
NameDescription
otherAnalyzeSyntaxResponse

Properties

Language

public string Language { get; set; }

The language of the text, which will be the same as the language specified in the request or, if not specified, the automatically-detected language. See [Document.language][google.cloud.language.v1.Document.language] field for more details.

Property Value
TypeDescription
String

Sentences

public RepeatedField<Sentence> Sentences { get; }

Sentences in the input document.

Property Value
TypeDescription
RepeatedField<Sentence>

Tokens

public RepeatedField<Token> Tokens { get; }

Tokens, along with their syntactic information, in the input document.

Property Value
TypeDescription
RepeatedField<Token>