Microsoft.Protocols.TestSuites.MS_OXCSTOR.RangeCommand.Size C# (CSharp) Method

Size() public method

Get the size of the RangeCommand
public Size ( ) : int
return int
        public override int Size()
        {
            // 1 byte is for command, 1 byte is for low value, and 1 byte is for high value
            return 3;
        }