JsonWriterOptions Struct

Definition

Allows the user to define custom behavior when writing JSON using the Utf8JsonWriter.

public value class JsonWriterOptions
public struct JsonWriterOptions
type JsonWriterOptions = struct
Public Structure JsonWriterOptions
Inheritance
JsonWriterOptions

Remarks

By default, the JSON is written without any indentation or extra white space. Also, Utf8JsonWriter throws an exception if the user attempts to write structurally invalid JSON.

For more information, see How to write custom serializers and deserializers with System.Text.Json.

Properties

Encoder

Gets or sets the encoder to use when escaping strings, or null to use the default encoder.

IndentCharacter
Indented

Gets or sets a value that indicates whether the Utf8JsonWriter should format the JSON output, which includes indenting nested JSON tokens, adding new lines, and adding white space between property names and values.

IndentSize
MaxDepth

Gets or sets the maximum depth allowed when writing JSON, with the default (that is, 0) indicating a max depth of 1000.

SkipValidation

Gets or sets a value that indicates whether the Utf8JsonWriter should skip structural validation and allow the user to write invalid JSON.

Applies to