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
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
Azure SDK for .NET