C# Class MAPIInspector.Parsers.RangeCommand

Represent a range command.
Inheritance: Command
Show file Open project: OfficeDev/Office-Inspectors-for-Fiddler Class Usage Examples

Public Properties

Property Type Description
Command byte
highValue byte[]
lowValue byte[]

Public Methods

Method Description
Parse ( FastTransferStream stream ) : void

Parse from a stream.

RangeCommand ( uint Length ) : System

Initializes a new instance of the RangeCommand structure.

Method Details

Parse() public method

Parse from a stream.
public Parse ( FastTransferStream stream ) : void
stream FastTransferStream A stream contains RangeCommand.
return void

RangeCommand() public method

Initializes a new instance of the RangeCommand structure.
public RangeCommand ( uint Length ) : System
Length uint The length of the LowValue and hignValue.
return System

Property Details

Command public property

public byte Command
return byte

highValue public property

public byte[] highValue
return byte[]

lowValue public property

public byte[] lowValue
return byte[]