C# Class Microsoft.Protocols.TestSuites.MS_OXCFXICS.PropList

Contains a list of propValues. propList = *PropValue
Inheritance: SyntacticalBase
Show file Open project: OfficeDev/Interop-TestSuites Class Usage Examples

Public Methods

Method Description
Deserialize ( FastTransferStream stream ) : void

Deserialize fields from a FastTransferStream.

GetPropValue ( ushort id, ushort type ) : object

Gets the value specified by a property tag.

HasPropertyID ( ushort id ) : bool

Indicates whether contains an id.

HasPropertyTag ( ushort id, ushort type ) : bool

Indicates whether has specified property tag.

HasPropertyType ( ushort type ) : bool

Indicates whether contains a type.

PropList ( FastTransferStream stream ) : System.Collections.Generic

Initializes a new instance of the PropList class.

Verify ( FastTransferStream stream ) : bool

Verify that a stream's current position contains a serialized propList.

Method Details

Deserialize() public method

Deserialize fields from a FastTransferStream.
public Deserialize ( FastTransferStream stream ) : void
stream FastTransferStream A FastTransferStream.
return void

GetPropValue() public method

Gets the value specified by a property tag.
public GetPropValue ( ushort id, ushort type ) : object
id ushort A ushort value, the id of the property tag.
type ushort A ushort value, the type of the property tag.
return object

HasPropertyID() public method

Indicates whether contains an id.
public HasPropertyID ( ushort id ) : bool
id ushort A ushort value.
return bool

HasPropertyTag() public method

Indicates whether has specified property tag.
public HasPropertyTag ( ushort id, ushort type ) : bool
id ushort A ushort value, the id of the property tag.
type ushort A ushort value, the type of the property tag.
return bool

HasPropertyType() public method

Indicates whether contains a type.
public HasPropertyType ( ushort type ) : bool
type ushort A ushort value.
return bool

PropList() public method

Initializes a new instance of the PropList class.
public PropList ( FastTransferStream stream ) : System.Collections.Generic
stream FastTransferStream A FastTransferStream.
return System.Collections.Generic

Verify() public static method

Verify that a stream's current position contains a serialized propList.
public static Verify ( FastTransferStream stream ) : bool
stream FastTransferStream A FastTransferStream.
return bool