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