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