Class MessageDescriptor.FieldCollection (3.15.8)

public sealed class FieldCollection : object

A collection to simplify retrieving the field accessor for a particular field.

Inheritance

Object > MessageDescriptor.FieldCollection

Namespace

Google.Protobuf.Reflection

Assembly

Google.Protobuf.dll

Properties

Item[Int32]

public FieldDescriptor this[int number] { get; }

Retrieves the descriptor for the field with the given number.

Parameter
NameDescription
numberInt32

Number of the field to retrieve the descriptor for

Property Value
TypeDescription
FieldDescriptor

The accessor for the given field

Item[String]

public FieldDescriptor this[string name] { get; }

Retrieves the descriptor for the field with the given name.

Parameter
NameDescription
nameString

Name of the field to retrieve the descriptor for

Property Value
TypeDescription
FieldDescriptor

The descriptor for the given field

Methods

InDeclarationOrder()

public IList<FieldDescriptor> InDeclarationOrder()
Returns
TypeDescription
IList<FieldDescriptor>

Returns the fields in the message as an immutable list, in the order in which they are declared in the source .proto file.

InFieldNumberOrder()

public IList<FieldDescriptor> InFieldNumberOrder()
Returns
TypeDescription
IList<FieldDescriptor>

Returns the fields in the message as an immutable list, in ascending field number order. Field numbers need not be contiguous, so there is no direct mapping from the index in the list to the field number; to retrieve a field by field number, it is better to use the MessageDescriptor.FieldCollection indexer.