C# Class Microsoft.Protocols.TestSuites.Common.RopSeekStreamResponse

Show file Open project: OfficeDev/Interop-TestSuites Class Usage Examples

Public Properties

Property Type Description
InputHandleIndex byte
NewPosition ulong
ReturnValue uint
RopId byte

Public Methods

Method Description
Deserialize ( byte ropBytes, int startIndex ) : int

Deserialize the ROP response buffer.

Method Details

Deserialize() public method

Deserialize the ROP response buffer.
public Deserialize ( byte ropBytes, int startIndex ) : int
ropBytes byte ROPs bytes in response.
startIndex int The start index of this ROP.
return int

Property Details

InputHandleIndex public property

Unsigned 8-bit integer. This index MUST be set to the InputHandleIndex specified in the request.
public byte InputHandleIndex
return byte

NewPosition public property

Unsigned 64-bit integer. This value represents the new position after the operation.
public ulong NewPosition
return ulong

ReturnValue public property

Unsigned 32-bit integer. This value specifies the status of the remote operation. For successful response, this field is set to 0x00000000. For failure response, this field is set to a value other than 0x00000000.
public uint ReturnValue
return uint

RopId public property

Unsigned 8-bit integer. This value specifies the type of remote operation. For this operation, this field is set to 0x2E.
public byte RopId
return byte