Edit

Share via


Field Constructors

Definition

Overloads

Field(Tag)

Initializes a new instance of the Field struct.

Field(Tag, UInt32, Type)

Initializes a new instance of the Field struct.

Field(Tag)

Initializes a new instance of the Field struct.

public Field (Orleans.Serialization.WireProtocol.Tag tag);
new Orleans.Serialization.WireProtocol.Field : Orleans.Serialization.WireProtocol.Tag -> Orleans.Serialization.WireProtocol.Field
Public Sub New (tag As Tag)

Parameters

tag
Tag

The tag.

Applies to

Field(Tag, UInt32, Type)

Initializes a new instance of the Field struct.

public Field (Orleans.Serialization.WireProtocol.Tag tag, uint extendedFieldIdDelta, Type type);
new Orleans.Serialization.WireProtocol.Field : Orleans.Serialization.WireProtocol.Tag * uint32 * Type -> Orleans.Serialization.WireProtocol.Field
Public Sub New (tag As Tag, extendedFieldIdDelta As UInteger, type As Type)

Parameters

tag
Tag

The tag.

extendedFieldIdDelta
UInt32

The extended field identifier delta.

type
Type

The type.

Applies to