Edit

Share via


JsonConverter<T>.Write(Utf8JsonWriter, T, JsonSerializerOptions) Method

Definition

Writes a specified value as JSON.

public:
 abstract void Write(System::Text::Json::Utf8JsonWriter ^ writer, T value, System::Text::Json::JsonSerializerOptions ^ options);
public abstract void Write (System.Text.Json.Utf8JsonWriter writer, T value, System.Text.Json.JsonSerializerOptions options);
abstract member Write : System.Text.Json.Utf8JsonWriter * 'T * System.Text.Json.JsonSerializerOptions -> unit
Public MustOverride Sub Write (writer As Utf8JsonWriter, value As T, options As JsonSerializerOptions)

Parameters

writer
Utf8JsonWriter

The writer to write to.

value
T

The value to convert to JSON.

options
JsonSerializerOptions

An object that specifies serialization options to use.

Remarks

A converter may throw any exception, but it should throw JsonException when the JSON cannot be created.

For more information, see How to write custom converters for JSON serialization.

Applies to