JsonValueTryParse(TextReader, JsonValue) Method
Namespace: KGySoft.JsonAssembly: KGySoft.Json (in KGySoft.Json.dll) Version: 3.0.0
public static bool TryParse(
TextReader reader,
out JsonValue value
)
Public Shared Function TryParse (
reader As TextReader,
<OutAttribute> ByRef value As JsonValue
) As Boolean
public:
static bool TryParse(
TextReader^ reader,
[OutAttribute] JsonValue% value
)
static member TryParse :
reader : TextReader *
value : JsonValue byref -> bool
- reader TextReader
- A TextReader that will be read for the JsonValue content.
- value JsonValue
- When this method returns , the result of the parsing;
otherwise, Undefined. This parameter is passed uninitialized.
Boolean if the parsing was successful; otherwise,
.