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

RopBackoffResponse response buffer structure.
Show file Open project: OfficeDev/Interop-TestSuites

Public Properties

Property Type Description
AdditionalData byte[]
AdditionalDataSize ushort
BackoffRopCount byte
BackoffRopData Microsoft.Protocols.TestSuites.Common.BackoffRop[]
Duration uint
LogonId byte
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

AdditionalData public property

Array of bytes. The size of this field, in bytes, is specified by the AdditionalDataSize. This array specifies additional information about the backoff response.
public byte[] AdditionalData
return byte[]

AdditionalDataSize public property

This value specifies the size of the AdditionalData field.
public ushort AdditionalDataSize
return ushort

BackoffRopCount public property

This value specifies the number of structures in the BackoffRopData field.
public byte BackoffRopCount
return byte

BackoffRopData public property

Array of BackoffRop structures. The format of the BackoffRop structure is specified in section 2.2.14.2.1.1. This array specifies the operations to be backed off and also the backoff duration for each.
public BackoffRop[],Microsoft.Protocols.TestSuites.Common BackoffRopData
return Microsoft.Protocols.TestSuites.Common.BackoffRop[]

Duration public property

This value specifies the number of milliseconds to apply a logon backoff.
public uint Duration
return uint

LogonId public property

This value specifies the logon to which the RopBackoff response applies.
public byte LogonId
return byte

RopId public property

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