System.Xml.DtdParser.Throw C# (CSharp) Méthode

Throw() private méthode

private Throw ( int curPos, string res, string arg ) : void
curPos int
res string
arg string
Résultat void
        private void Throw(int curPos, string res, string arg)
        {
            _curPos = curPos;
            Uri baseUri = _readerAdapter.BaseUri;
            _readerAdapter.Throw(new XmlException(res, arg, (int)LineNo, (int)LinePos, baseUri == null ? null : baseUri.ToString()));
        }
        private void Throw(int curPos, string res, string[] args)

Same methods

DtdParser::Throw ( int curPos, string res ) : void
DtdParser::Throw ( string res, string arg, int lineNo, int linePos ) : void