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.
Writes a specified 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 writer to write to.
- value
- IJsonModel<Object>
The value to convert to JSON.
- options
- JsonSerializerOptions
An object that specifies serialization options to use.
Remarks
A converter may throw any Exception, but should throw <cref>JsonException</cref> when the JSON cannot be created.