JsonObjectTryParse(TextReader, JsonObject) Method
Namespace: KGySoft.JsonAssembly: KGySoft.Json (in KGySoft.Json.dll) Version: 3.0.0
public static bool TryParse(
	TextReader reader,
	out JsonObject value
)
Public Shared Function TryParse ( 
	reader As TextReader,
	<OutAttribute> ByRef value As JsonObject
) As Boolean
public:
static bool TryParse(
	TextReader^ reader, 
	[OutAttribute] JsonObject^% value
)
static member TryParse : 
        reader : TextReader * 
        value : JsonObject byref -> bool 
- 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.
Boolean if the parsing was successful; otherwise, 
.