CompositeDataStream<TObject>.ReadAllDataFrames Method

Definition

Namespace: Extreme.Data
Assembly: Extreme.Data (in Extreme.Data.dll) Version: 3.2.0

Overload List

ReadAllDataFrames() Reads all data frames from the data stream.
ReadAllDataFrames<R, C>() Reads all data frames from the data stream.

CompositeDataStream<TObject>.ReadAllDataFrames

Reads all data frames from the data stream.
C#
public Dictionary<string, DataFrame<long, string>> ReadAllDataFrames()

Return Value

Dictionary<String, DataFrame<Int64, String>>
A dictionary that maps names to the corresponding data frame that was read from the data stream.

CompositeDataStream<TObject>.ReadAllDataFrames<R, C>

Reads all data frames from the data stream.
C#
public Dictionary<string, DataFrame<R, C>> ReadAllDataFrames<R, C>()

Type Parameters

R
The type of the row keys of the data frame.
C
The type of the column keys of the data frame.

Return Value

Dictionary<String, DataFrame<R, C>>
A dictionary that maps names to the corresponding data frame that was read from the data stream.

See Also