JsonConverter<T>.Write(Utf8JsonWriter, T, JsonSerializerOptions) 方法

定义

将指定值作为 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)

参数

writer
Utf8JsonWriter

要写入到的编写器。

value
T

要转换为 JSON 的值。

options
JsonSerializerOptions

一个对象,指定要使用的序列化选项。

注解

转换器可能会引发任何异常,但在无法创建 JSON 时,它应引发 JsonException

有关详细信息,请参阅 如何为 JSON 序列化编写自定义转换器

适用于