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

GetBytes() public method

Get the bytes of the RangeCommand
public GetBytes ( ) : byte[]
return byte[]
        public override byte[] GetBytes()
        {
            byte[] resultBytes = new byte[1 + CommandBytesLength];
            resultBytes[0] = this.Command;
            Array.Copy(this.CommandBytes, 0, resultBytes, 1, this.CommandBytes.Length);
            return resultBytes;
        }
    }