<PackageReference Include="System.Text.Json" Version="6.0.5" />

JsonWriterOptions

public struct JsonWriterOptions
Allows the user to define custom behavior when writing JSON using the Utf8JsonWriter.
public JavaScriptEncoder Encoder { get; set; }

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

public bool Indented { get; set; }

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.

public bool SkipValidation { get; set; }

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