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

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

Public Properties

Property Type Description
InputHandleIndex byte
Origin byte
ReturnValue uint
RopId byte
RowCount ushort
RowData PropertyRowSet

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

Origin public property

8-bit enumeration. The possible values for this enumeration are specified in [MS-OXCTABL]. This value specifies current location of the cursor.
public byte Origin
return byte

ReturnValue public property

Unsigned 32-bit integer. This value specifies the status of the remote operation. For success 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 0x15.
public byte RopId
return byte

RowCount public property

Unsigned 16-bit integer. This value specifies the number of structures in the RowData field.
public ushort RowCount
return ushort

RowData public property

List of PropertyRow structures. The number of structures contained in this field is specified by the RowCount field. The format of the PropertyRow structure is specified in [MS-OXCDATA] and the columns used for these rows were those previously set on this table by a RopSetColumns request.
public PropertyRowSet,Microsoft.Protocols.TestSuites.Common RowData
return PropertyRowSet