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

◆ GetInt64WithQuotes()

long System.Text.Json.Utf8JsonReader.GetInt64WithQuotes ( )
inlinepackage

Definition at line 4190 of file Utf8JsonReader.cs.

4191 {
4192 ReadOnlySpan<byte> unescapedSpan = GetUnescapedSpan();
4194 {
4195 throw ThrowHelper.GetFormatException(NumericType.Int64);
4196 }
4197 return value;
4198 }
bool TryGetInt64Core(out long 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.TryGetInt64Core(), and System.value.