Reads the data frame with the specified name from a stream.
Namespace: Extreme.Data.RAssembly: Extreme.Data (in Extreme.Data.dll) Version: 1.0.16170.0 (1.0.16170.0)
public static DataFrame<R, C> ReadDataFrame<R, C>(
Stream stream,
string name
)
Public Shared Function ReadDataFrame(Of R, C) (
stream As Stream,
name As String
) As DataFrame(Of R, C)
public:
generic<typename R, typename C>
static DataFrame<R, C>^ ReadDataFrame(
Stream^ stream,
String^ name
)
static member ReadDataFrame :
stream : Stream *
name : string -> DataFrame<'R, 'C>
Parameters
- stream
- Type: System.IOStream
The stream to read from. - name
- Type: SystemString
The name of the data frame to read.
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
Type:
DataFrameR,
CThe data frame that was read from the stream.
Numerical Libraries
Supported in: 6.0
Reference