JsonValueExtensionsGetTimeSpanOrDefault(JsonValue, JsonTimeFormat, TimeSpan, JsonValueType) Method
Gets the specified
JsonValue as a
TimeSpan 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
TimeSpan; otherwise, returns
defaultValue.
Namespace: KGySoft.JsonAssembly: KGySoft.Json (in KGySoft.Json.dll) Version: 3.0.0
public static TimeSpan GetTimeSpanOrDefault(
this JsonValue json,
JsonTimeFormat format,
TimeSpan defaultValue = default,
JsonValueType expectedType = JsonValueType.Undefined
)
<ExtensionAttribute>
Public Shared Function GetTimeSpanOrDefault (
json As JsonValue,
format As JsonTimeFormat,
Optional defaultValue As TimeSpan = Nothing,
Optional expectedType As JsonValueType = JsonValueType.Undefined
) As TimeSpan
public:
[ExtensionAttribute]
static TimeSpan GetTimeSpanOrDefault(
JsonValue json,
JsonTimeFormat format,
TimeSpan defaultValue = TimeSpan(),
JsonValueType expectedType = JsonValueType::Undefined
)
[<ExtensionAttribute>]
static member GetTimeSpanOrDefault :
json : JsonValue *
format : JsonTimeFormat *
?defaultValue : TimeSpan *
?expectedType : JsonValueType
(* Defaults:
let _defaultValue = defaultArg defaultValue new TimeSpan()
let _expectedType = defaultArg expectedType JsonValueType.Undefined
*)
-> TimeSpan
- json JsonValue
- The JsonValue to be converted to TimeSpan.
- format JsonTimeFormat
- A JsonTimeFormat value that specifies the format of the TimeSpan value in the JsonValue.
- defaultValue TimeSpan (Optional)
- The value to be returned if the conversion fails. This parameter is optional.
Default value: Zero. - expectedType JsonValueType (Optional)
- The expected Type of the specified json parameter,
or Undefined to allow any type. This parameter is optional.
Default value: Undefined.
TimeSpanA
TimeSpan 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).