JsonValueExtensionsGetDateTimeOffsetOrDefault(JsonValue, String, DateTimeOffset) Method
Namespace: KGySoft.JsonAssembly: KGySoft.Json (in KGySoft.Json.dll) Version: 3.0.0
public static DateTimeOffset GetDateTimeOffsetOrDefault(
this JsonValue json,
string format,
DateTimeOffset defaultValue = default
)
<ExtensionAttribute>
Public Shared Function GetDateTimeOffsetOrDefault (
json As JsonValue,
format As String,
Optional defaultValue As DateTimeOffset = Nothing
) As DateTimeOffset
public:
[ExtensionAttribute]
static DateTimeOffset GetDateTimeOffsetOrDefault(
JsonValue json,
String^ format,
DateTimeOffset defaultValue = DateTimeOffset()
)
[<ExtensionAttribute>]
static member GetDateTimeOffsetOrDefault :
json : JsonValue *
format : string *
?defaultValue : DateTimeOffset
(* Defaults:
let _defaultValue = defaultArg defaultValue new DateTimeOffset()
*)
-> DateTimeOffset
- json JsonValue
- The JsonValue to be converted to DateTimeOffset.
- format String
- Specifies the exact format of the date-time offset value in the JsonValue.
- defaultValue DateTimeOffset (Optional)
- The value to be returned if the conversion fails. This parameter is optional.
Default value: MinValue.
DateTimeOffsetA
DateTimeOffset value if
json could be converted; otherwise,
defaultValue.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).