CompositeDataStream<TObject>.ReadDataFrames Method

Definition

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

Overload List

ReadDataFrames(IEnumerable<String>) Reads the data frames with the specified names from the data stream.
ReadDataFrames<R, C>(IEnumerable<String>) Reads the data frames with the specified names from the data stream.

CompositeDataStream<TObject>.ReadDataFrames(IEnumerable<String>)

Reads the data frames with the specified names from the data stream.
C#
public Dictionary<string, DataFrame<long, string>> ReadDataFrames(
	IEnumerable<string> names
)

Parameters

names  IEnumerable<String>
A sequence of names.

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>.ReadDataFrames<R, C>(IEnumerable<String>)

Reads the data frames with the specified names from the data stream.
C#
public Dictionary<string, DataFrame<R, C>> ReadDataFrames<R, C>(
	IEnumerable<string> names
)

Parameters

names  IEnumerable<String>
A sequence of names.

Type Parameters

R
C

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