C# Class Microsoft.Protocols.TestSuites.SharedAdapter.CellIDArray

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

Public Methods

Method Description
CellIDArray ( ) : System.Collections.Generic

Initializes a new instance of the CellIDArray class, this is default constructor.

CellIDArray ( CellIDArray cellIdArray ) : System.Collections.Generic

Initializes a new instance of the CellIDArray class, this is copy constructor.

CellIDArray ( ulong count, List content ) : System.Collections.Generic

Initializes a new instance of the CellIDArray class.

SerializeToByteList ( ) : List

This method is used to convert the element of CellIDArray basic object into a byte List.

Protected Methods

Method Description
DoDeserializeFromByteArray ( byte byteArray, int startIndex ) : int

This method is used to deserialize the CellIDArray basic object from the specified byte array and start index.

Method Details

CellIDArray() public method

Initializes a new instance of the CellIDArray class, this is default constructor.
public CellIDArray ( ) : System.Collections.Generic
return System.Collections.Generic

CellIDArray() public method

Initializes a new instance of the CellIDArray class, this is copy constructor.
public CellIDArray ( CellIDArray cellIdArray ) : System.Collections.Generic
cellIdArray CellIDArray Specify the CellIDArray.
return System.Collections.Generic

CellIDArray() public method

Initializes a new instance of the CellIDArray class.
public CellIDArray ( ulong count, List content ) : System.Collections.Generic
count ulong Specify the number of CellID in the CellID array.
content List Specify the list of CellID.
return System.Collections.Generic

DoDeserializeFromByteArray() protected method

This method is used to deserialize the CellIDArray basic object from the specified byte array and start index.
protected DoDeserializeFromByteArray ( byte byteArray, int startIndex ) : int
byteArray byte Specify the byte array.
startIndex int Specify the start index from the byte array.
return int

SerializeToByteList() public method

This method is used to convert the element of CellIDArray basic object into a byte List.
public SerializeToByteList ( ) : List
return List