Udostępnij za pośrednictwem


JsonModelConverter.Write Method

Definition

Write the value as JSON.

public override void Write (System.Text.Json.Utf8JsonWriter writer, System.ClientModel.Primitives.IJsonModel<object> value, System.Text.Json.JsonSerializerOptions options);
override this.Write : System.Text.Json.Utf8JsonWriter * System.ClientModel.Primitives.IJsonModel<obj> * System.Text.Json.JsonSerializerOptions -> unit
Public Overrides Sub Write (writer As Utf8JsonWriter, value As IJsonModel(Of Object), options As JsonSerializerOptions)

Parameters

writer
Utf8JsonWriter

The Utf8JsonWriter to write to.

value
IJsonModel<Object>

The value to convert. Note that the value of determines if the converter handles null values.

Remarks

A converter may throw any Exception, but should throw when the JSON cannot be created.

Applies to