Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ MaxDepth

int System.Text.Json.JsonReaderOptions.MaxDepth
getset

Definition at line 25 of file JsonReaderOptions.cs.

26 {
27 readonly get
28 {
29 return _maxDepth;
30 }
31 set
32 {
33 if (value < 0)
34 {
35 throw ThrowHelper.GetArgumentOutOfRangeException_MaxDepthMustBePositive("value");
36 }
38 }
39 }

Referenced by System.Text.Json.Utf8JsonReader.Utf8JsonReader(), System.Text.Json.Utf8JsonReader.Utf8JsonReader(), System.Text.Json.Utf8JsonReader.StartArray(), and System.Text.Json.Utf8JsonReader.StartObject().