DataCellCollection(Int32, Boolean) Constructor

Creates a new DataCellCollection from specified parameters.

Definition

Namespace: Gemstone.PhasorProtocols
Assembly: Gemstone.PhasorProtocols (in Gemstone.PhasorProtocols.dll) Version: 1.0.147 -- Release Build+f4cca6bc29b9a344db35676d1f49d8207c89dbf5
public DataCellCollection(
	int lastValidIndex,
	bool constantCellLength
)

Parameters

lastValidIndex  Int32
Last valid index for the collection (i.e., maximum count - 1).
constantCellLength  Boolean
Sets flag that determines if the lengths of IDataCell elements in this DataCellCollection are constant.

Remarks

lastValidIndex is used instead of maximum count so that maximum type values may be specified as needed. For example, if the protocol specifies a collection with a signed 16-bit maximum length you can specify MaxValue (i.e., 32,767) as the last valid index for the collection since total number of items supported would be 32,768.

See Also