Microsoft.Protocols.TestSuites.MS_OXCSTOR.PopCommand.GetBytes C# (CSharp) Method

GetBytes() public method

Get the bytes of the PopCommand
public GetBytes ( ) : byte[]
return byte[]
        public override byte[] GetBytes()
        {
            byte[] resultBytes = new byte[1];
            resultBytes[0] = (byte)CommandType.RangCommand;
            return resultBytes;
        }
    }