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