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

◆ GetInt16WithQuotes()

short System.Text.Json.Utf8JsonReader.GetInt16WithQuotes ( )
inlinepackage

Definition at line 4152 of file Utf8JsonReader.cs.

4153 {
4154 ReadOnlySpan<byte> unescapedSpan = GetUnescapedSpan();
4156 {
4157 throw ThrowHelper.GetFormatException(NumericType.Int16);
4158 }
4159 return value;
4160 }
bool TryGetInt16Core(out short 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.TryGetInt16Core(), and System.value.