JsonObjectTryParse(TextReader, JsonObject) Method

Tries to read a JsonObject from a TextReader that contains JSON object.

Definition

Namespace: KGySoft.Json
Assembly: KGySoft.Json (in KGySoft.Json.dll) Version: 3.0.0
C#
public static bool TryParse(
	TextReader reader,
	out JsonObject value
)

Parameters

reader  TextReader
A TextReader that will be read for the JsonObject content.
value  JsonObject
When this method returns , the result of the parsing; otherwise, . This parameter is passed uninitialized.

Return Value

Boolean
if the parsing was successful; otherwise, .

See Also