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

◆ WriteStartEscape() [2/2]

void System.Text.Json.Utf8JsonWriter.WriteStartEscape ( ReadOnlySpan< char > propertyName,
byte token )
inlineprivate

Definition at line 416 of file Utf8JsonWriter.cs.

417 {
418 int num = JsonWriterHelper.NeedsEscaping(propertyName, _options.Encoder);
419 if (num != -1)
420 {
422 }
423 else
424 {
426 }
427 }
void WriteStartEscapeProperty(ReadOnlySpan< byte > utf8PropertyName, byte token, int firstEscapeIndexProp)
void WriteStartByOptions(ReadOnlySpan< byte > utf8PropertyName, byte token)

References System.Text.Json.Utf8JsonWriter._options, System.Text.Json.Dictionary, System.Text.Json.JsonWriterOptions.Encoder, System.Text.Json.JsonWriterHelper.NeedsEscaping(), System.Text.Json.Utf8JsonWriter.WriteStartByOptions(), and System.Text.Json.Utf8JsonWriter.WriteStartEscapeProperty().