JsonValueExtensionsGetDateTimeOffsetOrDefault(JsonValue, JsonValueType) Method
Namespace: KGySoft.JsonAssembly: KGySoft.Json (in KGySoft.Json.dll) Version: 3.0.0
public static DateTimeOffset GetDateTimeOffsetOrDefault(
this JsonValue json,
JsonValueType expectedType
)
<ExtensionAttribute>
Public Shared Function GetDateTimeOffsetOrDefault (
json As JsonValue,
expectedType As JsonValueType
) As DateTimeOffset
public:
[ExtensionAttribute]
static DateTimeOffset GetDateTimeOffsetOrDefault(
JsonValue json,
JsonValueType expectedType
)
[<ExtensionAttribute>]
static member GetDateTimeOffsetOrDefault :
json : JsonValue *
expectedType : JsonValueType -> DateTimeOffset
- json JsonValue
- The JsonValue to be converted to DateTimeOffset.
- 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).