Table of Contents

Struct PacketDescriptor

Namespace
Moongate.Network.Packets.Data.Packets
Assembly
Moongate.Network.Packets.dll

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

OpCode byte
Sizing PacketSizing
Length int
Description string
HandlerType Type

Properties

Description

public string Description { get; init; }

Property Value

string

HandlerType

public Type HandlerType { get; init; }

Property Value

Type

Length

public int Length { get; init; }

Property Value

int

OpCode

public byte OpCode { get; init; }

Property Value

byte

Sizing

public PacketSizing Sizing { get; init; }

Property Value

PacketSizing