JsonValueParse(Stream, Encoding) Method

Reads a JsonValue from a Stream that contains JSON data.

Definition

Namespace: KGySoft.Json
Assembly: KGySoft.Json (in KGySoft.Json.dll) Version: 3.0.0
C#
public static JsonValue Parse(
	Stream stream,
	Encoding? encoding = null
)

Parameters

stream  Stream
A Stream that will be read for the JsonValue content.
encoding  Encoding  (Optional)
An Encoding that specifies the encoding of the JSON data in the stream. If , then UTF8 encoding will be used. This parameter is optional.
Default value: .

Return Value

JsonValue
A JsonValue that contains the JSON data that was read from the specified stream.

See Also