JsonValueParse(TextReader) Method

Reads a JsonValue from a TextReader that contains JSON data.

Definition

Namespace: KGySoft.Json
Assembly: KGySoft.Json (in KGySoft.Json.dll) Version: 3.0.0
C#
public static JsonValue Parse(
	TextReader reader
)

Parameters

reader  TextReader
A TextReader that will be read for the JsonValue content.

Return Value

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

See Also