CompositeDataStream<TObject>.ReadDataFrame Method

Definition

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

Overload List

ReadDataFrame(String) Reads the data frame with the specified name in the file.
ReadDataFrame<R>(Int32, Boolean) Reads a data frame from the file.
ReadDataFrame<R>(String, Boolean) Reads a data frame from the file.
ReadDataFrame<R, C>() Reads the data frame at the current position in the file.
ReadDataFrame<R, C>(String) Reads the data frame with the specified name in the file.
ReadDataFrame<R, C>(C, Boolean) Reads a data frame from the file.

CompositeDataStream<TObject>.ReadDataFrame<R, C>

Reads the data frame at the current position in the file.
C#
public override DataFrame<R, C> ReadDataFrame<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

DataFrame<R, C>
A data frame containing the data.

CompositeDataStream<TObject>.ReadDataFrame(String)

Reads the data frame with the specified name in the file.
C#
public DataFrame<long, string> ReadDataFrame(
	string name
)

Parameters

name  String
The name of the matrix to read.

Return Value

DataFrame<Int64, String>
A data frame containing the data.

CompositeDataStream<TObject>.ReadDataFrame<R, C>(String)

Reads the data frame with the specified name in the file.
C#
public DataFrame<R, C> ReadDataFrame<R, C>(
	string name
)

Parameters

name  String
The name of the matrix to read.

Type Parameters

R
C

Return Value

DataFrame<R, C>
A data frame containing the data.

See Also