JsonModelConverter.Write Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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.
- options
- JsonSerializerOptions
The JsonSerializerOptions being used.
Remarks
A converter may throw any Exception, but should throw when the JSON cannot be created.
Applies to
Współpracuj z nami w serwisie GitHub
Źródło tej zawartości można znaleźć w witrynie GitHub, gdzie można również tworzyć i przeglądać problemy i żądania ściągnięcia. Więcej informacji znajdziesz w naszym przewodniku dla współtwórców.
Azure SDK for .NET