JsonConverter<T>.Write(Utf8JsonWriter, T, JsonSerializerOptions) 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:
abstract void Write(System::Text::Json::Utf8JsonWriter ^ writer, T value, System::Text::Json::JsonSerializerOptions ^ options);
public abstract void Write (System.Text.Json.Utf8JsonWriter writer, T value, System.Text.Json.JsonSerializerOptions options);
abstract member Write : System.Text.Json.Utf8JsonWriter * 'T * System.Text.Json.JsonSerializerOptions -> unit
Public MustOverride Sub Write (writer As Utf8JsonWriter, value As T, options As JsonSerializerOptions)
Parameters
- writer
- Utf8JsonWriter
The writer to write to.
- value
- T
The value to convert to JSON.
- options
- JsonSerializerOptions
An object that specifies serialization options to use.
Remarks
A converter may throw any exception, but it should throw JsonException when the JSON cannot be created.
For more information, see How to write custom converters for JSON serialization.
Applies to
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.