CompositeDataStream<TObject>.ReadAllMatrices<T> Method

Reads all matrices with the specified element type from the data stream.

Definition

Namespace: Extreme.Data
Assembly: Extreme.Data (in Extreme.Data.dll) Version: 3.2.0
C#
public Dictionary<string, Matrix<T>> ReadAllMatrices<T>(
	bool strict = true
)

Parameters

strict  Boolean  (Optional)
Specifies whether the element type should be matched exactly (true, the default), or whether conversions are allowed (false).

Type Parameters

T
The element type of the matrices.

Return Value

Dictionary<String, Matrix<T>>
A dictionary containing the matrices read from the data stream using their name as the key.

See Also