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

◆ GetUInt64WithQuotes()

ulong System.Text.Json.Utf8JsonReader.GetUInt64WithQuotes ( )
inlinepackage

Definition at line 4250 of file Utf8JsonReader.cs.

4251 {
4252 ReadOnlySpan<byte> unescapedSpan = GetUnescapedSpan();
4254 {
4255 throw ThrowHelper.GetFormatException(NumericType.UInt64);
4256 }
4257 return value;
4258 }
bool TryGetUInt64Core(out ulong value, ReadOnlySpan< byte > span)
ReadOnlySpan< byte > GetUnescapedSpan()

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