Composite Data Stream<TObject>.Read Vectors<T> Method
Reads vectors with the specified names from the data stream.
Definition
Namespace: Extreme.Data
Assembly: Extreme.Data (in Extreme.Data.dll) Version: 3.2.0
C#
A dictionary containing the vectors read from the data stream using their name as the key.
Assembly: Extreme.Data (in Extreme.Data.dll) Version: 3.2.0
public Dictionary<string, Vector<T>> ReadVectors<T>(
IEnumerable<string> names,
bool strict = true
)
Parameters
- names IEnumerable<String>
- A sequence of names of the vectors to read.
- strict Boolean (Optional)
- Specifies whether the element type should be matched exactly (true), or whether conversions are allowed (false, the default).
Type Parameters
- T
- The element type of the vectors.
Return Value
Dictionary<String, Vector<T>>A dictionary containing the vectors read from the data stream using their name as the key.