JsonValueExtensionsGetBooleanOrDefault(JsonValue, JsonValueType) Method
            Gets the specified 
JsonValue as a 
Boolean value if 
expectedType is 
Undefined
            or matches the 
Type property of the specified 
json parameter and it can be converted to 
Boolean;
            otherwise, returns 
, which is the default value of 
Boolean.
            This method allows interpreting numeric values as booleans where nonzero values are 
.
            
Namespace: KGySoft.JsonAssembly: KGySoft.Json (in KGySoft.Json.dll) Version: 3.0.0
public static bool GetBooleanOrDefault(
	this JsonValue json,
	JsonValueType expectedType
)
<ExtensionAttribute>
Public Shared Function GetBooleanOrDefault ( 
	json As JsonValue,
	expectedType As JsonValueType
) As Boolean
public:
[ExtensionAttribute]
static bool GetBooleanOrDefault(
	JsonValue json, 
	JsonValueType expectedType
)
[<ExtensionAttribute>]
static member GetBooleanOrDefault : 
        json : JsonValue * 
        expectedType : JsonValueType -> bool 
- json  JsonValue
- The JsonValue to be converted to Boolean.
- expectedType  JsonValueType
- The expected Type of the specified json parameter,
            or Undefined to allow any type..
BooleanA 
Boolean value if 
json could be converted; otherwise, 
.In Visual Basic and C#, you can call this method as an instance method on any object of type 
JsonValue. When you use instance method syntax to call this method, omit the first parameter. For more information, see 
Extension Methods (Visual Basic) or 
Extension Methods (C# Programming Guide).