JsonReaderOptions Struct

Definition

Provides the ability for the user to define custom behavior when reading JSON.

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

Remarks

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

Properties

AllowTrailingCommas

Gets or sets a value that defines whether an extra comma at the end of a list of JSON values in an object or array is allowed (and ignored) within the JSON payload being read.

CommentHandling

Gets or sets a value that determines how the Utf8JsonReader handles comments when reading through the JSON data.

MaxDepth

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

Applies to