TabCompletePacket
class
Declaration
[ProtocolSupport(735, 776)]
[Packet("play.toClient.tab_complete", PacketPhase.Play, PacketDirection.Clientbound)]
[PacketField("TransactionId", "int")]
[PacketField("Start", "int")]
[PacketField("Length", "int")]
[PacketField("Matches", "TabCompleteMatch[]")]
public sealed record TabCompletePacket : IPacket<TabCompletePacket>, IProtocolType<TabCompletePacket>, IPacket
| Namespace | McProtoNet.Protocol.Packets.Play.Clientbound |
| Assembly | McProtoNet.Protocol.dll |
| Source | src/McProtoNet.Protocol/Generated/Packets/Play/Clientbound/TabCompletePacket.cs#L5 ↗ |
Implements: IPacket<TabCompletePacket>, IProtocolType<TabCompletePacket>, IPacket
Constructors
| Signature | Description |
|---|---|
TabCompletePacket(int TransactionId, int Start, int Length, TabCompleteMatch[] Matches) | - |
TabCompletePacket(int, int, int, TabCompleteMatch[])
public TabCompletePacket(int TransactionId, int Start, int Length, TabCompleteMatch[] Matches)
Parameters: TransactionId (Int32), Start (Int32), Length (Int32), Matches (TabCompleteMatch[])
Properties
| Signature | Description |
|---|---|
static PacketIdentity Identity | Gets the identity of the packet type. |
int Length | - |
TabCompleteMatch[] Matches | - |
int Start | - |
int TransactionId | - |
Identity
public static PacketIdentity Identity { get; }
Gets the identity of the packet type.
Returns: PacketIdentity
Length
public int Length { get; init; }
Returns: Int32
Matches
public TabCompleteMatch[] Matches { get; init; }
Returns: TabCompleteMatch[]
Start
public int Start { get; init; }
Returns: Int32
TransactionId
public int TransactionId { get; init; }
Returns: Int32
Methods
| Signature | Description |
|---|---|
static int GetPacketId(int protocolVersion) | - |
static TabCompletePacket Read(ref MinecraftPrimitiveReader reader, int protocolVersion) | Reads a value of type TabCompletePacket 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 TabCompletePacket Read(ref MinecraftPrimitiveReader reader, int protocolVersion)
Reads a value of type TabCompletePacket from the specified reader.
Parameters: reader (MinecraftPrimitiveReader), protocolVersion (Int32)
Returns: TabCompletePacket - 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">true</a> if the packet exists on the specified protocol version; otherwise, <a href="https://learn.microsoft.com/dotnet/csharp/language-reference/builtin-types/bool">false</a>.
Write(MinecraftPrimitiveWriter, int)
public void Write(MinecraftPrimitiveWriter writer, int protocolVersion)
Writes the current value to the specified writer.
Parameters: writer (MinecraftPrimitiveWriter), protocolVersion (Int32)