JsonObjectParse(TextReader) Method

Reads a JsonObject from a TextReader that contains a JSON object.

Definition

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

Parameters

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

Return Value

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

See Also