GetTimeOnlyOrDefault(JsonValue, JsonValueType) | Gets the specified JsonValue as a TimeOnly value if expectedType is Undefined or matches the Type property of the specified json parameter and it can be converted to TimeOnly; otherwise, returns TimeOnly.MinValue, which is the default value of TimeOnly. The actual format is attempted to be auto detected. If you know exact format use the GetTimeOnlyOrDefault(JsonValue, JsonTimeFormat, TimeOnly, JsonValueType) overload instead. |
GetTimeOnlyOrDefault(JsonValue, JsonTimeFormat, JsonValueType) | Gets the specified JsonValue as a TimeOnly 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 TimeOnly; otherwise, returns TimeOnly.MinValue, which is the default value of TimeOnly. |
GetTimeOnlyOrDefault(JsonValue, TimeOnly, JsonValueType) | Gets the specified JsonValue as a TimeOnly value if expectedType is Undefined or matches the Type property of the specified json parameter and it can be converted to TimeOnly; otherwise, returns defaultValue. The actual format is attempted to be auto detected. If you know exact format use the GetTimeOnlyOrDefault(JsonValue, JsonTimeFormat, TimeOnly, JsonValueType) overload instead. |
GetTimeOnlyOrDefault(JsonValue, JsonTimeFormat, TimeOnly, JsonValueType) | Gets the specified JsonValue as a TimeOnly 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 TimeOnly; otherwise, returns defaultValue. |