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

◆ WriteNumberEscape() [10/10]

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

Definition at line 3971 of file Utf8JsonWriter.cs.

3972 {
3973 int num = JsonWriterHelper.NeedsEscaping(propertyName, _options.Encoder);
3974 if (num != -1)
3975 {
3977 }
3978 else
3979 {
3981 }
3982 }
void WriteNumberByOptions(ReadOnlySpan< char > propertyName, decimal value)
void WriteNumberEscapeProperty(ReadOnlySpan< char > propertyName, decimal value, int firstEscapeIndexProp)

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.WriteNumberByOptions(), and System.Text.Json.Utf8JsonWriter.WriteNumberEscapeProperty().