System.Xml.XmlTextReaderImpl.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)
        {
            Throw(new XmlException(res, arg, lineNo, linePos, _ps.baseUriStr));
        }

Same methods

XmlTextReaderImpl::Throw ( Exception e ) : void
XmlTextReaderImpl::Throw ( int pos, string res ) : void
XmlTextReaderImpl::Throw ( int pos, string res, string arg ) : void
XmlTextReaderImpl::Throw ( string res ) : void
XmlTextReaderImpl::Throw ( string res, int lineNo, int linePos ) : void
XmlTextReaderImpl::Throw ( string res, string arg ) : void
XmlTextReaderImpl::Throw ( string res, string arg, Exception innerException ) : void
XmlTextReaderImpl