Microsoft.Protocols.TestTools.StackSdk.BranchCache.Pccrr.PccrrBLKLISTResponsePacket.Decode C# (CSharp) Method

Decode() public method

Decode pack.
public Decode ( byte rawdata ) : PccrrPacket
rawdata byte The rawdata.
return PccrrPacket
        public override PccrrPacket Decode(byte[] rawdata)
        {
            if (rawdata == null)
            {
                throw new ArgumentNullException("rawdata");
            }

            if (rawdata.Length == 0)
            {
                throw new ArgumentException("The raw data should not be empty.");
            }

            PccrrBLKLISTResponsePacket packet = new PccrrBLKLISTResponsePacket();

            return packet;
        }