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

◆ WriteStringEscape() [9/12]

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

Definition at line 1988 of file Utf8JsonWriter.cs.

1989 {
1990 int num = JsonWriterHelper.NeedsEscaping(propertyName, _options.Encoder);
1991 if (num != -1)
1992 {
1994 }
1995 else
1996 {
1998 }
1999 }
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().