Struct PacketDescriptor
Represents struct.
public readonly record struct PacketDescriptor : IEquatable<PacketDescriptor>
- Implements
- Inherited Members
Constructors
PacketDescriptor(byte, PacketSizing, int, string, Type)
Represents struct.
public PacketDescriptor(byte OpCode, PacketSizing Sizing, int Length, string Description, Type HandlerType)
Parameters
OpCodebyteSizingPacketSizingLengthintDescriptionstringHandlerTypeType
Properties
Description
public string Description { get; init; }
Property Value
HandlerType
public Type HandlerType { get; init; }
Property Value
Length
public int Length { get; init; }
Property Value
OpCode
public byte OpCode { get; init; }
Property Value
Sizing
public PacketSizing Sizing { get; init; }