JObjectExtension.GetBoolean method
Version 1.1.28
.NET Framework 4.8
Namespace | Skybrud.Essentials.Json.Extensions |
---|---|
Assembly | Skybrud.Essentials.dll |
GetBoolean(JObject, string)
Static
Gets the bool value of the token matching the specified path
, or
0
if path
doesn't match a token.
public static bool GetBoolean(JObject obj, string path)
GetBoolean<T>(JObject, string, Func<T, TResult>)
Static
Gets the bool value of the token matching the specified path
and
parses it into an instance of T
, or the default value of T
if path
doesn't match a token.
public static T GetBoolean<T>(JObject obj, string path, Func<T, TResult> callback)
Type Parameters
T
Parameters
obj
JObject
The parent object.
A callback function used for parsing or converting the token value.
Returns
T
An instance of bool , or false
if path
doesn't match a token.