JsonArrayParse(Stream, Encoding) Method
Namespace: KGySoft.JsonAssembly: KGySoft.Json (in KGySoft.Json.dll) Version: 3.0.0
public static JsonArray Parse(
Stream stream,
Encoding? encoding = null
)
Public Shared Function Parse (
stream As Stream,
Optional encoding As Encoding = Nothing
) As JsonArray
public:
static JsonArray^ Parse(
Stream^ stream,
Encoding^ encoding = nullptr
)
static member Parse :
stream : Stream *
?encoding : Encoding
(* Defaults:
let _encoding = defaultArg encoding null
*)
-> JsonArray
- stream Stream
- A Stream that will be read for the JsonArray content.
- encoding Encoding (Optional)
- An Encoding that specifies the encoding of the JSON array data in the stream.
If , then UTF8 encoding will be used. This parameter is optional.
Default value: .
JsonArrayA
JsonArray that contains the JSON array data that was read from the specified
stream.