ChatSuggestionsPacket
class
Declaration
[ProtocolSupport(760, 776)]
[Packet("play.toClient.chat_suggestions", PacketPhase.Play, PacketDirection.Clientbound)]
[PacketField("Action", "int")]
[PacketField("Entries", "string[]")]
public sealed record ChatSuggestionsPacket : IPacket<ChatSuggestionsPacket>, IProtocolType<ChatSuggestionsPacket>, IPacket
| Namespace | McProtoNet.Protocol.Packets.Play.Clientbound |
| Assembly | McProtoNet.Protocol.dll |
| Source | src/McProtoNet.Protocol/Generated/Packets/Play/Clientbound/ChatSuggestionsPacket.cs#L5 ↗ |
Implements: IPacket<ChatSuggestionsPacket>, IProtocolType<ChatSuggestionsPacket>, IPacket
Constructors
| Signature | Description |
|---|---|
ChatSuggestionsPacket(int Action, string[] Entries) | - |
ChatSuggestionsPacket(int, string[])
public ChatSuggestionsPacket(int Action, string[] Entries)
Parameters: Action (Int32), Entries (String[])
Properties
| Signature | Description |
|---|---|
int Action | - |
string[] Entries | - |
static PacketIdentity Identity | Gets the identity of the packet type. |
Action
public int Action { get; init; }
Returns: Int32
Entries
public string[] Entries { get; init; }
Returns: String[]
Identity
public static PacketIdentity Identity { get; }
Gets the identity of the packet type.
Returns: PacketIdentity
Methods
| Signature | Description |
|---|---|
static int GetPacketId(int protocolVersion) | - |
static ChatSuggestionsPacket Read(ref MinecraftPrimitiveReader reader, int protocolVersion) | Reads a value of type ChatSuggestionsPacket 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 ChatSuggestionsPacket Read(ref MinecraftPrimitiveReader reader, int protocolVersion)
Reads a value of type ChatSuggestionsPacket from the specified reader.
Parameters: reader (MinecraftPrimitiveReader), protocolVersion (Int32)
Returns: ChatSuggestionsPacket - 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)