JsonValueExtensionsGetTimeSpanOrDefault(JsonValue, TimeSpan, JsonValueType) Method
Namespace: KGySoft.JsonAssembly: KGySoft.Json (in KGySoft.Json.dll) Version: 3.0.0
public static TimeSpan GetTimeSpanOrDefault(
this JsonValue json,
TimeSpan defaultValue = default,
JsonValueType expectedType = JsonValueType.Undefined
)
<ExtensionAttribute>
Public Shared Function GetTimeSpanOrDefault (
json As JsonValue,
Optional defaultValue As TimeSpan = Nothing,
Optional expectedType As JsonValueType = JsonValueType.Undefined
) As TimeSpan
public:
[ExtensionAttribute]
static TimeSpan GetTimeSpanOrDefault(
JsonValue json,
TimeSpan defaultValue = TimeSpan(),
JsonValueType expectedType = JsonValueType::Undefined
)
[<ExtensionAttribute>]
static member GetTimeSpanOrDefault :
json : JsonValue *
?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.
- 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).