System.Xml.XmlTextReaderImpl.SkipPublicOrSystemIdLiteral C# (CSharp) Méthode

SkipPublicOrSystemIdLiteral() private méthode

private SkipPublicOrSystemIdLiteral ( ) : void
Résultat void
        private void SkipPublicOrSystemIdLiteral()
        {
            // check quote char
            char quoteChar = _ps.chars[_ps.charPos];
            if (quoteChar != '"' && quoteChar != '\'')
            {
                ThrowUnexpectedToken("\"", "'");
            }

            _ps.charPos++;
            SkipUntil(quoteChar, false);
        }
XmlTextReaderImpl