DynamicRest.JsonReader.ReadNull C# (CSharp) Method

ReadNull() private method

private ReadNull ( ) : void
return void
        private void ReadNull()
        {
            string s = ReadName(/* allowQuotes */ false);

            if ((s == null) || !s.Equals("null", StringComparison.Ordinal)) {
                throw new FormatException("Invalid null literal.");
            }
        }