Opens a data stream in JSON format for reading.
Namespace:
Extreme.Data.Json
Assembly:
Extreme.Data.Json (in Extreme.Data.Json.dll) Version: 3.1.0
public static JsonStream Open(
Stream stream,
JsonOptions options = null
)
Public Shared Function Open (
stream As Stream,
Optional options As JsonOptions = Nothing
) As JsonStream
public:
static JsonStream^ Open(
Stream^ stream,
JsonOptions^ options = nullptr
)
static member Open :
stream : Stream *
?options : JsonOptions
(* Defaults:
let _options = defaultArg options null
*)
-> JsonStream
Parameters
- stream
- Type: System.IOStream
The stream to read the data from. - options (Optional)
- Type: Extreme.Data.JsonJsonOptions
A JsonOptions object
that specifies the options to use when reading the file.
Return Value
Type:
JsonStreamA
JsonStream.
Reference