AbstractAbstracttypeGets 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.
AbstractreadReads and converts the JSON to the target type.
The value to deserialize.
The deserialized value.
AbstractwriteWrites the value as JSON.
The value to serialize.
The serialized value.
Base class for JSON converters that handle serialization and deserialization of specific types. Similar to System.Text.Json.Serialization.JsonConverter.