JsonValueExtensionsAsDateTime(JsonValue, JsonDateTimeFormat, 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
.
Namespace: KGySoft.JsonAssembly: KGySoft.Json (in KGySoft.Json.dll) Version: 3.0.0
public static DateTime? AsDateTime(
this JsonValue json,
JsonDateTimeFormat format,
JsonValueType expectedType
)
<ExtensionAttribute>
Public Shared Function AsDateTime (
json As JsonValue,
format As JsonDateTimeFormat,
expectedType As JsonValueType
) As DateTime?
public:
[ExtensionAttribute]
static Nullable<DateTime> AsDateTime(
JsonValue json,
JsonDateTimeFormat format,
JsonValueType expectedType
)
[<ExtensionAttribute>]
static member AsDateTime :
json : JsonValue *
format : JsonDateTimeFormat *
expectedType : JsonValueType -> Nullable<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. This parameter is optional.
Default value: Undefined.
NullableDateTimeA
DateTime 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).