JsonValueExtensionsGetDateOnlyOrDefault(JsonValue, JsonValueType) Method
Namespace: KGySoft.JsonAssembly: KGySoft.Json (in KGySoft.Json.dll) Version: 3.0.0
public static DateOnly GetDateOnlyOrDefault(
	this JsonValue json,
	JsonValueType expectedType
)
<ExtensionAttribute>
Public Shared Function GetDateOnlyOrDefault ( 
	json As JsonValue,
	expectedType As JsonValueType
) As DateOnly
public:
[ExtensionAttribute]
static DateOnly GetDateOnlyOrDefault(
	JsonValue json, 
	JsonValueType expectedType
)
[<ExtensionAttribute>]
static member GetDateOnlyOrDefault : 
        json : JsonValue * 
        expectedType : JsonValueType -> DateOnly 
- json  JsonValue
- The JsonValue to be converted to DateOnly.
- expectedType  JsonValueType
- The expected Type of the specified json parameter,
            or Undefined to allow any type.
DateOnlyA 
DateTime value if 
json could be converted; otherwise, 
DateTime.MinValue,
            which is the default value of 
DateOnly.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).