Opens a data file 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(
string path,
JsonOptions options = null
)
Public Shared Function Open (
path As String,
Optional options As JsonOptions = Nothing
) As JsonStream
public:
static JsonStream^ Open(
String^ path,
JsonOptions^ options = nullptr
)
static member Open :
path : string *
?options : JsonOptions
(* Defaults:
let _options = defaultArg options null
*)
-> JsonStream
Parameters
- path
- Type: SystemString
The path to the file. - 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