Gets the type that this converter handles.
Determines whether the converter can convert the specified type.
The type to check.
True if the converter can convert the type; otherwise, false.
Not called by JsonSerializer and scheduled for removal in the next major version.
A converter is resolved by the type it declares through type, which is what this would
answer anyway, so overriding it has no effect - register a converter per type instead. Wiring it
into the lookup is not the plan either: it would force a scan of every converter on the path
taken by every plain object, to serve a case a second registration already covers.
Reads and converts the JSON to the target type.
The value to deserialize.
The deserialized value.
Writes the value as JSON.
The value to serialize.
The serialized value.
JSON converter for DateOnly type.