FastNetwork.Event.SendCallbackEventArgs.SendCallbackEventArgs C# (CSharp) Method

SendCallbackEventArgs() public method

new
packet is null
public SendCallbackEventArgs ( Packet packet, SendCallbackStatus status ) : System
packet Packet
status SendCallbackStatus
return System
        public SendCallbackEventArgs(Packet packet, SendCallbackStatus status)
        {
            if (packet == null) throw new ArgumentNullException("packet");
            this.Packet = packet;
            this.Status = status;
        }
SendCallbackEventArgs