PaleTree.Shared.PalePacket.PalePacket C# (CSharp) Method

PalePacket() public method

Creates new PalePacket.
public PalePacket ( string opName, int opSize, Packet packet, System.DateTime time, bool received ) : System
opName string
opSize int
packet Packet
time System.DateTime
received bool
return System
        public PalePacket(string opName, int opSize, Packet packet, DateTime time, bool received)
        {
            OpName = opName;
            OpSize = opSize;
            Packet = packet;
            Time = time;
            Received = received;
        }