Class WaitingListPacket
Class that represents a waiting list packet.
Inheritance
System.Object
WaitingListPacket
Implements
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Fibula.Communications.Packets.Outgoing
Assembly: Fibula.Communications.Packets.dll
Syntax
public class WaitingListPacket : IOutboundPacket
Constructors
| Improve this Doc View SourceWaitingListPacket(String, Byte)
Initializes a new instance of the WaitingListPacket class.
Declaration
public WaitingListPacket(string message, byte waitTimeInSeconds)
Parameters
Type | Name | Description |
---|---|---|
System.String | message | The message to send along. |
System.Byte | waitTimeInSeconds | The wait time in seconds to instruct the client to wait before re-checking. |
Properties
| Improve this Doc View SourceMessage
Gets the message to send.
Declaration
public string Message { get; }
Property Value
Type | Description |
---|---|
System.String |
PacketType
Gets the type of this packet.
Declaration
public OutgoingPacketType PacketType { get; }
Property Value
Type | Description |
---|---|
OutgoingPacketType |
WaitTime
Gets the wait time in seconds to instruct the client to wait before re-checking.
Declaration
public byte WaitTime { get; }
Property Value
Type | Description |
---|---|
System.Byte |