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

◆ GetInt32WithQuotes()

int System.Text.Json.Utf8JsonReader.GetInt32WithQuotes ( )
inlinepackage

Definition at line 4171 of file Utf8JsonReader.cs.

4172 {
4173 ReadOnlySpan<byte> unescapedSpan = GetUnescapedSpan();
4175 {
4176 throw ThrowHelper.GetFormatException(NumericType.Int32);
4177 }
4178 return value;
4179 }
ReadOnlySpan< byte > GetUnescapedSpan()
bool TryGetInt32Core(out int value, ReadOnlySpan< byte > span)

References System.Text.Json.Dictionary, System.Text.Json.ThrowHelper.GetFormatException(), System.Text.Json.Utf8JsonReader.GetUnescapedSpan(), System.Text.Json.Utf8JsonReader.TryGetInt32Core(), and System.value.