Exemple #1
0
        public static short GetInt16Value(ReadOnlySpan <byte> int16Token)
        {
            if (!JsonBinaryEncoding.TryGetInt16Value(int16Token, out short int16Value))
            {
                throw new JsonInvalidNumberException();
            }

            return(int16Value);
        }