Class Field (3.15.8)

public sealed class Field : object, 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 = null

Field number for the "cardinality" field.

Field Value
Type Description
Int32

DefaultValueFieldNumber

public const int DefaultValueFieldNumber = null

Field number for the "default_value" field.

Field Value
Type Description
Int32

JsonNameFieldNumber

public const int JsonNameFieldNumber = null

Field number for the "json_name" field.

Field Value
Type Description
Int32

KindFieldNumber

public const int KindFieldNumber = null

Field number for the "kind" field.

Field Value
Type Description
Int32

NameFieldNumber

public const int NameFieldNumber = null

Field number for the "name" field.

Field Value
Type Description
Int32

NumberFieldNumber

public const int NumberFieldNumber = null

Field number for the "number" field.

Field Value
Type Description
Int32

OneofIndexFieldNumber

public const int OneofIndexFieldNumber = null

Field number for the "oneof_index" field.

Field Value
Type Description
Int32

OptionsFieldNumber

public const int OptionsFieldNumber = null

Field number for the "options" field.

Field Value
Type Description
Int32

PackedFieldNumber

public const int PackedFieldNumber = null

Field number for the "packed" field.

Field Value
Type Description
Int32

TypeUrlFieldNumber

public const int TypeUrlFieldNumber = null

Field number for the "type_url" field.

Field Value
Type Description
Int32

Properties

Cardinality

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

The field cardinality.

Property Value
Type Description
Field.Types.Cardinality

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
Field.Types.Kind

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
Int32

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
Int32

Options

public RepeatedField<Option> Options { get; }

The protocol buffer options.

Property Value
Type Description
RepeatedField<Option>

Packed

public bool Packed { get; set; }

Whether to use alternative packed wire representation.

Property Value
Type Description
Boolean

Parser

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

TypeUrl

public string TypeUrl { get; set; }

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

Property Value
Type Description
String

Methods

CalculateSize()

public int CalculateSize()
Returns
Type Description
Int32

Clone()

public Field Clone()
Returns
Type Description
Field

Equals(Field)

public bool Equals(Field other)
Parameter
Name Description
other Field
Returns
Type Description
Boolean

Equals(Object)

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

GetHashCode()

public override int GetHashCode()
Returns
Type Description
Int32

MergeFrom(CodedInputStream)

public void MergeFrom(CodedInputStream input)
Parameter
Name Description
input CodedInputStream

MergeFrom(Field)

public void MergeFrom(Field other)
Parameter
Name Description
other Field

ToString()

public override string ToString()
Returns
Type Description
String

WriteTo(CodedOutputStream)

public void WriteTo(CodedOutputStream output)
Parameter
Name Description
output CodedOutputStream

Explicit Interface Implementations

IBufferMessage.InternalMergeFrom(ref ParseContext)

void IBufferMessage.InternalMergeFrom(ref ParseContext input)
Parameter
Name Description
input ParseContext

IBufferMessage.InternalWriteTo(ref WriteContext)

void IBufferMessage.InternalWriteTo(ref WriteContext output)
Parameter
Name Description
output WriteContext

IMessage.Descriptor

MessageDescriptor IMessage.Descriptor { get; }
Returns
Type Description
MessageDescriptor