Delegate Utf8JsonReaderFunc<T>
- Namespace
- Cuemon.Extensions.Text.Json
- Assembly
- Cuemon.Extensions.Text.Json.dll
Represents the Read method of JsonConverter<T>.
public delegate T Utf8JsonReaderFunc<out T>(ref Utf8JsonReader reader, Type typeToConvert, JsonSerializerOptions options)
Parameters
readerUtf8JsonReaderThe Utf8JsonReader to read from.
typeToConvertTypeThe type to convert.
optionsJsonSerializerOptionsAn object that specifies serialization options to use.
Returns
- T
The converted value.
Type Parameters
TThe type of object or value handled by the converter.
- Extension Methods