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