Declaration
public static bool TryParse(
string jsonValue,
out JsonValue result
)
Summary
Attempts to parse the specified string into a JSON value.
Parameters
string | jsonValue |
A string containing JSON syntax. |
out JsonValue | result |
Receives the JsonValue representing the value, or null if unsuccessful. (But note that null is
also a possible valid value in case of success.) |
Returns
True if parsing was successful; otherwise, false.