Table of Contents

Delegate Utf8JsonWriterAction<T>

Namespace
Cuemon.Extensions.Text.Json
Assembly
Cuemon.Extensions.Text.Json.dll

Represents the Write method of JsonConverter<T>.

public delegate void Utf8JsonWriterAction<in T>(Utf8JsonWriter writer, T value, JsonSerializerOptions options);

Parameters

writer Utf8JsonWriter

The Utf8JsonWriter to write to.

value T

The value to convert to JSON.

options JsonSerializerOptions

An object that specifies serialization options to use.

Type Parameters

T

The type of object or value handled by the converter.

Extension Methods