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
Werk met ons samen op GitHub
De bron voor deze inhoud vindt u op GitHub, waar u ook problemen en pull-aanvragen kunt maken en bekijken. Raadpleeg onze gids voor inzenders voor meer informatie.