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

◆ WriteStringEscape() [6/12]

void System.Text.Json.Utf8JsonWriter.WriteStringEscape ( ReadOnlySpan< byte > utf8Value)
inlineprivate

Definition at line 5297 of file Utf8JsonWriter.cs.

5298 {
5299 int num = JsonWriterHelper.NeedsEscaping(utf8Value, _options.Encoder);
5300 if (num != -1)
5301 {
5303 }
5304 else
5305 {
5307 }
5308 }
void WriteStringByOptions(ReadOnlySpan< char > propertyName, DateTime value)
void WriteStringEscapeValue(ReadOnlySpan< char > value, int firstEscapeIndexVal)

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