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

◆ WriteStringEscape() [8/12]

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

Definition at line 1094 of file Utf8JsonWriter.cs.

1095 {
1096 int num = JsonWriterHelper.NeedsEscaping(propertyName, _options.Encoder);
1097 if (num != -1)
1098 {
1100 }
1101 else
1102 {
1104 }
1105 }
void WriteStringEscapeProperty(ReadOnlySpan< char > propertyName, DateTime value, int firstEscapeIndexProp)
void WriteStringByOptions(ReadOnlySpan< char > propertyName, DateTime value)

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