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

◆ ValidateValue() [2/2]

static void System.Text.Json.JsonWriterHelper.ValidateValue ( ReadOnlySpan< char > value)
inlinestatic

Definition at line 117 of file JsonWriterHelper.cs.

118 {
119 if (value.Length > 166666666)
120 {
121 ThrowHelper.ThrowArgumentException_ValueTooLarge(value.Length);
122 }
123 }

References System.Text.Json.ThrowHelper.ThrowArgumentException_ValueTooLarge(), and System.value.