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
Utf8JsonWriterThe Utf8JsonWriter to write to.
value
TThe value to convert to JSON.
options
JsonSerializerOptionsAn object that specifies serialization options to use.
Type Parameters
T
The type of object or value handled by the converter.
- Extension Methods