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

◆ WriteStartSlow()

void System.Text.Json.Utf8JsonWriter.WriteStartSlow ( byte token)
inlineprivate

Definition at line 250 of file Utf8JsonWriter.cs.

251 {
252 if (_options.Indented)
253 {
255 {
258 }
259 WriteStartIndented(token);
260 }
261 else
262 {
265 WriteStartMinimized(token);
266 }
267 }

References System.Text.Json.Utf8JsonWriter._options, System.Text.Json.JsonWriterOptions.Indented, System.Text.Json.JsonWriterOptions.SkipValidation, System.Text.Json.Utf8JsonWriter.UpdateBitStackOnStart(), System.Text.Json.Utf8JsonWriter.ValidateStart(), System.Text.Json.Utf8JsonWriter.WriteStartIndented(), and System.Text.Json.Utf8JsonWriter.WriteStartMinimized().

Referenced by System.Text.Json.Utf8JsonWriter.WriteStart().