Table of Contents

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

reader Utf8JsonReader

The Utf8JsonReader to read from.

typeToConvert Type

The type to convert.

options JsonSerializerOptions

An object that specifies serialization options to use.

Returns

T

The converted value.

Type Parameters

T

The type of object or value handled by the converter.

Extension Methods