JsonValueExtensionsAsDateTimeOffset(JsonValue, JsonDateTimeFormat, JsonValueType) Method
Namespace: KGySoft.JsonAssembly: KGySoft.Json (in KGySoft.Json.dll) Version: 3.0.0
public static DateTimeOffset? AsDateTimeOffset(
this JsonValue json,
JsonDateTimeFormat format = JsonDateTimeFormat.Auto,
JsonValueType expectedType = JsonValueType.Undefined
)
<ExtensionAttribute>
Public Shared Function AsDateTimeOffset (
json As JsonValue,
Optional format As JsonDateTimeFormat = JsonDateTimeFormat.Auto,
Optional expectedType As JsonValueType = JsonValueType.Undefined
) As DateTimeOffset?
public:
[ExtensionAttribute]
static Nullable<DateTimeOffset> AsDateTimeOffset(
JsonValue json,
JsonDateTimeFormat format = JsonDateTimeFormat::Auto,
JsonValueType expectedType = JsonValueType::Undefined
)
[<ExtensionAttribute>]
static member AsDateTimeOffset :
json : JsonValue *
?format : JsonDateTimeFormat *
?expectedType : JsonValueType
(* Defaults:
let _format = defaultArg format JsonDateTimeFormat.Auto
let _expectedType = defaultArg expectedType JsonValueType.Undefined
*)
-> Nullable<DateTimeOffset>
- json JsonValue
- The JsonValue to be converted to DateTimeOffset.
- format JsonDateTimeFormat (Optional)
- A JsonDateTimeFormat value that specifies the format of the date-time offset value in the JsonValue. This parameter is optional.
Default value: Auto, which attempts to auto detect the format. - expectedType JsonValueType (Optional)
- The expected Type of the specified json parameter,
or Undefined to allow any type. This parameter is optional.
Default value: Undefined.
NullableDateTimeOffsetA
DateTimeOffset 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).