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

◆ WriteStringEscape() [12/12]

void System.Text.Json.Utf8JsonWriter.WriteStringEscape ( ReadOnlySpan< char > value)
inlineprivate

Definition at line 5202 of file Utf8JsonWriter.cs.

5203 {
5204 int num = JsonWriterHelper.NeedsEscaping(value, _options.Encoder);
5205 if (num != -1)
5206 {
5208 }
5209 else
5210 {
5212 }
5213 }
void WriteStringByOptions(ReadOnlySpan< char > propertyName, DateTime value)
void WriteStringEscapeValue(ReadOnlySpan< char > value, int firstEscapeIndexVal)

References System.Text.Json.Utf8JsonWriter._options, System.Text.Json.JsonWriterOptions.Encoder, System.Text.Json.JsonWriterHelper.NeedsEscaping(), System.value, System.Text.Json.Utf8JsonWriter.WriteStringByOptions(), and System.Text.Json.Utf8JsonWriter.WriteStringEscapeValue().