Перейти к основному содержимому

DebugSamplePacket

class

Declaration

[ProtocolSupport(766, 776)]
[Packet("play.toClient.debug_sample", PacketPhase.Play, PacketDirection.Clientbound)]
[PacketField("Sample", "long[]")]
[PacketField("Type", "int")]
public sealed record DebugSamplePacket : IPacket<DebugSamplePacket>, IProtocolType<DebugSamplePacket>, IPacket
NamespaceMcProtoNet.Protocol.Packets.Play.Clientbound
AssemblyMcProtoNet.Protocol.dll
Sourcesrc/McProtoNet.Protocol/Generated/Packets/Play/Clientbound/DebugSamplePacket.cs#L5 ↗

Implements: IPacket<DebugSamplePacket>, IProtocolType<DebugSamplePacket>, IPacket

Constructors

SignatureDescription
DebugSamplePacket(long[] Sample, int Type)-

DebugSamplePacket(long[], int)

public DebugSamplePacket(long[] Sample, int Type)

Parameters: Sample (Int64[]), Type (Int32)

Properties

SignatureDescription
static PacketIdentity IdentityGets the identity of the packet type.
long[] Sample-
int Type-

Identity

public static PacketIdentity Identity { get; }

Gets the identity of the packet type.

Returns: PacketIdentity

Sample

public long[] Sample { get; init; }

Returns: Int64[]

Type

public int Type { get; init; }

Returns: Int32

Methods

SignatureDescription
static int GetPacketId(int protocolVersion)-
static DebugSamplePacket Read(ref MinecraftPrimitiveReader reader, int protocolVersion)Reads a value of type DebugSamplePacket from the specified reader.
static bool TryGetPacketId(int protocolVersion, out int id)Attempts to get the wire id of the packet for the specified protocol version.
void Write(MinecraftPrimitiveWriter writer, int protocolVersion)Writes the current value to the specified writer.

GetPacketId(int)

public static int GetPacketId(int protocolVersion)

Parameters: protocolVersion (Int32)

Returns: Int32

Read(ref MinecraftPrimitiveReader, int)

public static DebugSamplePacket Read(ref MinecraftPrimitiveReader reader, int protocolVersion)

Reads a value of type DebugSamplePacket from the specified reader.

Parameters: reader (MinecraftPrimitiveReader), protocolVersion (Int32)

Returns: DebugSamplePacket - The value that was read.

TryGetPacketId(int, out int)

public static bool TryGetPacketId(int protocolVersion, out int id)

Attempts to get the wire id of the packet for the specified protocol version.

Parameters: protocolVersion (Int32), id (Int32)

Returns: Boolean - <a href="https://learn.microsoft.com/dotnet/csharp/language-reference/builtin-types/bool"&gt;true&lt;/a> if the packet exists on the specified protocol version; otherwise, <a href="https://learn.microsoft.com/dotnet/csharp/language-reference/builtin-types/bool"&gt;false&lt;/a>.

Write(MinecraftPrimitiveWriter, int)

public void Write(MinecraftPrimitiveWriter writer, int protocolVersion)

Writes the current value to the specified writer.

Parameters: writer (MinecraftPrimitiveWriter), protocolVersion (Int32)