Class Field (3.23.0)

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

A single field of a message type.

Inheritance

object > Field

Namespace

Google.Protobuf.WellKnownTypes

Assembly

Google.Protobuf.dll

Constructors

Field()

public Field()

Field(Field)

public Field(Field other)
Parameter
Name Description
other Field

Fields

CardinalityFieldNumber

public const int CardinalityFieldNumber = 2

Field number for the "cardinality" field.

Field Value
Type Description
int

DefaultValueFieldNumber

public const int DefaultValueFieldNumber = 11

Field number for the "default_value" field.

Field Value
Type Description
int

JsonNameFieldNumber

public const int JsonNameFieldNumber = 10

Field number for the "json_name" field.

Field Value
Type Description
int

KindFieldNumber

public const int KindFieldNumber = 1

Field number for the "kind" field.

Field Value
Type Description
int

NameFieldNumber

public const int NameFieldNumber = 4

Field number for the "name" field.

Field Value
Type Description
int

NumberFieldNumber

public const int NumberFieldNumber = 3

Field number for the "number" field.

Field Value
Type Description
int

OneofIndexFieldNumber

public const int OneofIndexFieldNumber = 7

Field number for the "oneof_index" field.

Field Value
Type Description
int

OptionsFieldNumber

public const int OptionsFieldNumber = 9

Field number for the "options" field.

Field Value
Type Description
int

PackedFieldNumber

public const int PackedFieldNumber = 8

Field number for the "packed" field.

Field Value
Type Description
int

TypeUrlFieldNumber

public const int TypeUrlFieldNumber = 6

Field number for the "type_url" field.

Field Value
Type Description
int

Properties

Cardinality

public Field.Types.Cardinality Cardinality { get; set; }

The field cardinality.

Property Value
Type Description
FieldTypesCardinality

DefaultValue

public string DefaultValue { get; set; }

The string value of the default value of this field. Proto2 syntax only.

Property Value
Type Description
string

Descriptor

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

JsonName

public string JsonName { get; set; }

The field JSON name.

Property Value
Type Description
string

Kind

public Field.Types.Kind Kind { get; set; }

The field type.

Property Value
Type Description
FieldTypesKind

Name

public string Name { get; set; }

The field name.

Property Value
Type Description
string

Number

public int Number { get; set; }

The field number.

Property Value
Type Description
int

OneofIndex

public int OneofIndex { get; set; }

The index of the field type in Type.oneofs, for message or enumeration types. The first type has index 1; zero means the type is not in the list.

Property Value
Type Description
int

Options

public RepeatedField<Option> Options { get; }

The protocol buffer options.

Property Value
Type Description
RepeatedFieldOption

Packed

public bool Packed { get; set; }

Whether to use alternative packed wire representation.

Property Value
Type Description
bool

Parser

public static MessageParser<Field> Parser { get; }
Property Value
Type Description
MessageParserField

TypeUrl

public string TypeUrl { get; set; }

The field type URL, without the scheme, for message or enumeration types. Example: "type.googleapis.com/google.protobuf.Timestamp".

Property Value
Type Description
string

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 Field Clone()

Creates a deep clone of this object.

Returns
Type Description
Field

A deep clone of this object.

Equals(Field)

public bool Equals(Field other)
Parameter
Name Description
other Field
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(Field)

public void MergeFrom(Field other)

Merges the given message into this one.

Parameter
Name Description
other Field
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