Class Method (3.27.1)

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

Method represents a method of an API interface.

Inheritance

object > Method

Namespace

Google.Protobuf.WellKnownTypes

Assembly

Google.Protobuf.dll

Constructors

Method()

public Method()

Method(Method)

public Method(Method other)
Parameter
Name Description
other Method

Fields

NameFieldNumber

public const int NameFieldNumber = 1

Field number for the "name" field.

Field Value
Type Description
int

OptionsFieldNumber

public const int OptionsFieldNumber = 6

Field number for the "options" field.

Field Value
Type Description
int

RequestStreamingFieldNumber

public const int RequestStreamingFieldNumber = 3

Field number for the "request_streaming" field.

Field Value
Type Description
int

RequestTypeUrlFieldNumber

public const int RequestTypeUrlFieldNumber = 2

Field number for the "request_type_url" field.

Field Value
Type Description
int

ResponseStreamingFieldNumber

public const int ResponseStreamingFieldNumber = 5

Field number for the "response_streaming" field.

Field Value
Type Description
int

ResponseTypeUrlFieldNumber

public const int ResponseTypeUrlFieldNumber = 4

Field number for the "response_type_url" field.

Field Value
Type Description
int

SyntaxFieldNumber

public const int SyntaxFieldNumber = 7

Field number for the "syntax" field.

Field Value
Type Description
int

Properties

Descriptor

public static MessageDescriptor Descriptor { get; }
Property Value
Type Description
MessageDescriptor

Name

public string Name { get; set; }

The simple name of this method.

Property Value
Type Description
string

Options

public RepeatedField<Option> Options { get; }

Any metadata attached to the method.

Property Value
Type Description
RepeatedFieldOption

Parser

public static MessageParser<Method> Parser { get; }
Property Value
Type Description
MessageParserMethod

RequestStreaming

public bool RequestStreaming { get; set; }

If true, the request is streamed.

Property Value
Type Description
bool

RequestTypeUrl

public string RequestTypeUrl { get; set; }

A URL of the input message type.

Property Value
Type Description
string

ResponseStreaming

public bool ResponseStreaming { get; set; }

If true, the response is streamed.

Property Value
Type Description
bool

ResponseTypeUrl

public string ResponseTypeUrl { get; set; }

The URL of the output message type.

Property Value
Type Description
string

Syntax

public Syntax Syntax { get; set; }

The source syntax of this method.

Property Value
Type Description
Syntax

Methods

CalculateSize()

public int CalculateSize()

Calculates the size of this message in Protocol Buffer wire format, in bytes.

Returns
Type Description
int

The number of bytes required to write this message to a coded output stream.

Clone()

public Method Clone()

Creates a deep clone of this object.

Returns
Type Description
Method

A deep clone of this object.

Equals(Method)

public bool Equals(Method other)
Parameter
Name Description
other Method
Returns
Type Description
bool

Equals(object)

public override bool Equals(object other)
Parameter
Name Description
other object
Returns
Type Description
bool
Overrides

GetHashCode()

public override int GetHashCode()
Returns
Type Description
int
Overrides

MergeFrom(CodedInputStream)

public void MergeFrom(CodedInputStream input)

Merges the data from the specified coded input stream with the current message.

Parameter
Name Description
input CodedInputStream
Remarks

See the user guide for precise merge semantics.

MergeFrom(Method)

public void MergeFrom(Method other)

Merges the given message into this one.

Parameter
Name Description
other Method
Remarks

See the user guide for precise merge semantics.

ToString()

public override string ToString()
Returns
Type Description
string
Overrides

WriteTo(CodedOutputStream)

public void WriteTo(CodedOutputStream output)

Writes the data to the given coded output stream.

Parameter
Name Description
output CodedOutputStream

Coded output stream to write the data to. Must not be null.

Extension Methods