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

◆ GetUInt32WithQuotes()

uint System.Text.Json.Utf8JsonReader.GetUInt32WithQuotes ( )
inlinepackage

Definition at line 4230 of file Utf8JsonReader.cs.

4231 {
4232 ReadOnlySpan<byte> unescapedSpan = GetUnescapedSpan();
4234 {
4235 throw ThrowHelper.GetFormatException(NumericType.UInt32);
4236 }
4237 return value;
4238 }
bool TryGetUInt32Core(out uint 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.TryGetUInt32Core(), and System.value.