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