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

◆ WriteStringEscape() [3/12]

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

Definition at line 2001 of file Utf8JsonWriter.cs.

2002 {
2003 int num = JsonWriterHelper.NeedsEscaping(utf8PropertyName, _options.Encoder);
2004 if (num != -1)
2005 {
2007 }
2008 else
2009 {
2011 }
2012 }
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().