JsonValueExtensionsGetDateTimeOrDefault(JsonValue, JsonDateTimeFormat, DateTime, JsonValueType) Method
Gets the specified
JsonValue as a
DateTime value using the specified
format if
expectedType
is
Undefined or matches the
Type property of the specified
json parameter and it can be
converted to
DateTime; otherwise, returns
defaultValue.
Namespace: KGySoft.JsonAssembly: KGySoft.Json (in KGySoft.Json.dll) Version: 3.0.0
public static DateTime GetDateTimeOrDefault(
this JsonValue json,
JsonDateTimeFormat format,
DateTime defaultValue,
JsonValueType expectedType
)
<ExtensionAttribute>
Public Shared Function GetDateTimeOrDefault (
json As JsonValue,
format As JsonDateTimeFormat,
defaultValue As DateTime,
expectedType As JsonValueType
) As DateTime
public:
[ExtensionAttribute]
static DateTime GetDateTimeOrDefault(
JsonValue json,
JsonDateTimeFormat format,
DateTime defaultValue,
JsonValueType expectedType
)
[<ExtensionAttribute>]
static member GetDateTimeOrDefault :
json : JsonValue *
format : JsonDateTimeFormat *
defaultValue : DateTime *
expectedType : JsonValueType -> DateTime
- json JsonValue
- The JsonValue to be converted to DateTime.
- format JsonDateTimeFormat
- A JsonDateTimeFormat value that specifies the format of the date-time value in the JsonValue.
- defaultValue DateTime
- The value to be returned if the conversion fails.
- expectedType JsonValueType
- The expected Type of the specified json parameter,
or Undefined to allow any type. This parameter is optional.
Default value: Undefined.
DateTimeA
DateTime 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).