BonCodeAJP13.TomcatPackets.TomcatCPongReply.TomcatCPongReply C# (CSharp) Method

TomcatCPongReply() public method

constructor with data to initialize
public TomcatCPongReply ( byte content )
content byte
        public TomcatCPongReply(byte[] content)
        {
            p_ByteStore = content;
            try
            {
                p_PacketLength = content.Length;
                p_UserDataLength = System.Convert.ToUInt16(content.Length - 4);
            }
            catch
            {
                //do nothing for now
            }
        }

Same methods

TomcatCPongReply::TomcatCPongReply ( )
TomcatCPongReply