JsonValueExtensionsGetDateOnlyOrDefault(JsonValue, String, DateOnly) Method
Gets the specified
JsonValue as a
DateOnly value using the specified
format
if
Type property of the specified
json parameter is
String and it can be
converted to
DateOnly; otherwise, returns
defaultValue.
Namespace: KGySoft.JsonAssembly: KGySoft.Json (in KGySoft.Json.dll) Version: 3.0.0
public static DateOnly GetDateOnlyOrDefault(
this JsonValue json,
string format,
DateOnly defaultValue = default
)
<ExtensionAttribute>
Public Shared Function GetDateOnlyOrDefault (
json As JsonValue,
format As String,
Optional defaultValue As DateOnly = Nothing
) As DateOnly
public:
[ExtensionAttribute]
static DateOnly GetDateOnlyOrDefault(
JsonValue json,
String^ format,
DateOnly defaultValue = DateOnly()
)
[<ExtensionAttribute>]
static member GetDateOnlyOrDefault :
json : JsonValue *
format : string *
?defaultValue : DateOnly
(* Defaults:
let _defaultValue = defaultArg defaultValue new DateOnly()
*)
-> DateOnly
- json JsonValue
- The JsonValue to be converted to DateOnly.
- format String
- Specifies the exact format of the date in the JsonValue.
- defaultValue DateOnly (Optional)
- The value to be returned if the conversion fails. This parameter is optional.
Default value: MinValue.
DateOnlyA
DateOnly value if
json could be converted; otherwise,
defaultValue.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).