Composite Data Stream<TObject>.Read Data Frame Method
Definition
Namespace: Extreme.Data
Assembly: Extreme.Data (in Extreme.Data.dll) Version: 3.2.0
Assembly: Extreme.Data (in Extreme.Data.dll) Version: 3.2.0
Overload List
Read | Reads the data frame with the specified name in the file. |
Read | Reads a data frame from the file. |
Read | Reads a data frame from the file. |
Read | Reads the data frame at the current position in the file. |
Read | Reads the data frame with the specified name in the file. |
Read | Reads a data frame from the file. |
ReadDataFrame<R, C>
Reads the data frame at the current position in the file.
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.
ReadDataFrame(String)
Reads the data frame with the specified name in the file.
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.
ReadDataFrame<R, C>(String)
Reads the data frame with the specified name in the file.
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.