Reads the data frame with the specified name from a stream.
Namespace:
Extreme.Data.R
Assembly:
Extreme.Data (in Extreme.Data.dll) Version: 3.1.0
public static DataFrame<long, string> ReadDataFrame(
Stream stream,
string name
)
Public Shared Function ReadDataFrame (
stream As Stream,
name As String
) As DataFrame(Of Long, String)
public:
static DataFrame<long long, String^>^ ReadDataFrame(
Stream^ stream,
String^ name
)
static member ReadDataFrame :
stream : Stream *
name : string -> DataFrame<int64, string>
Parameters
- stream
- Type: System.IOStream
The stream to read from. - name
- Type: SystemString
The name of the data frame to read.
Return Value
Type:
DataFrameInt64,
StringThe data frame that was read from the stream.
Reference