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

◆ GetSByteWithQuotes()

sbyte System.Text.Json.Utf8JsonReader.GetSByteWithQuotes ( )
inlinepackage

Definition at line 4133 of file Utf8JsonReader.cs.

4134 {
4135 ReadOnlySpan<byte> unescapedSpan = GetUnescapedSpan();
4137 {
4138 throw ThrowHelper.GetFormatException(NumericType.SByte);
4139 }
4140 return value;
4141 }
ReadOnlySpan< byte > GetUnescapedSpan()
bool TryGetSByteCore(out sbyte value, ReadOnlySpan< byte > span)

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