System.Xml.DtdParser.Throw C# (CSharp) Method

Throw() private method

private Throw ( string res, string arg, int lineNo, int linePos ) : void
res string
arg string
lineNo int
linePos int
return void
        private void Throw(string res, string arg, int lineNo, int linePos)
        {
            Uri baseUri = _readerAdapter.BaseUri;
            _readerAdapter.Throw(new XmlException(res, arg, (int)lineNo, (int)linePos, baseUri == null ? null : baseUri.ToString()));
        }

Same methods

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