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

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

Public Properties

Property Type Description
InputHandleIndex byte
ReturnValue uint
RopId byte
RowCount uint
Rows 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

This index MUST be set to the InputHandleIndex specified in the request.
public byte InputHandleIndex
return byte

ReturnValue public property

This value specifies the status of the remote operation. For this response, this field is set to 0x00000000.
public uint ReturnValue
return uint

RopId public property

This value specifies the type of remote operation. For this operation, this field is set to 0x68.
public byte RopId
return byte

RowCount public property

This value specifies the number of row structures contained in the Rows field.
public uint RowCount
return uint

Rows public property

Array of row structures. This field contains the rows of the Receive folder table. Each row is returned in either a StandardPropertyRow structure or a FlaggedPropertyRow structure, both of which are specified in [MS-OXCDATA] sections 2.9.1.1 and 2.9.1.2. The number of row structures contained in this field is specified by the RowCount field. The ValueArray field of either StandardPropertyRow or FlaggedPropertyRow MUST include only the PidTagFolderId, PidTagMessageClass, and PidTagLastModificationTime properties, in that order, and no other properties.
public PropertyRowSet,Microsoft.Protocols.TestSuites.Common Rows
return PropertyRowSet