JsonConverter<T>.WriteAsPropertyName 方法

定义

将字典键写入 JSON 属性名称。

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

参数

writer
Utf8JsonWriter

要向其中进行写入的 Utf8JsonWriter

value
T

要转换的值。 的值 HandleNull 确定转换器是否处理 null 值。

options
JsonSerializerOptions

写入值时要使用的选项。

注解

此方法应在序列化字典键中使用的类型的自定义转换器中重写。

适用于