JsonWriterOptions.MaxDepth Property

Definition

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

public:
 property int MaxDepth { int get(); void set(int value); };
public int MaxDepth { get; set; }
member this.MaxDepth : int with get, set
Public Property MaxDepth As Integer

Property Value

Exceptions

Thrown when the max depth is set to a negative value.

Remarks

Reading past this depth will throw a <exception cref="T:System.Text.Json.JsonException>.

Applies to