TransportService.NextArrivedEventArgs.NextArrivedEventArgs C# (CSharp) Method

NextArrivedEventArgs() public method

Constructor of the class.
public NextArrivedEventArgs ( int cID, byte payload ) : System
cID int Chunk id passed
payload byte Payload to transport
return System
        public NextArrivedEventArgs(int cID, byte[] payload)
        {
            this.CID = cID;
            this.Payload = payload;
        }
NextArrivedEventArgs