Reads the data frames with the specified names from
the data stream.
Namespace:
Extreme.Data
Assembly:
Extreme.Data (in Extreme.Data.dll) Version: 3.1.0
public Dictionary<string, DataFrame<R, C>> ReadDataFrames<R, C>(
IEnumerable<string> names
)
Public Function ReadDataFrames(Of R, C) (
names As IEnumerable(Of String)
) As Dictionary(Of String, DataFrame(Of R, C))
public:
generic<typename R, typename C>
Dictionary<String^, DataFrame<R, C>^>^ ReadDataFrames(
IEnumerable<String^>^ names
)
member ReadDataFrames :
names : IEnumerable<string> -> Dictionary<string, DataFrame<'R, 'C>>
Parameters
- names
- Type: System.Collections.GenericIEnumerableString
A sequence of names.
Type Parameters
- R
- C
Return Value
Type:
DictionaryString,
DataFrameR,
CA dictionary that maps names to the corresponding
data frame that was read from the data stream.
Reference