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

Throw() private method

private Throw ( int pos, string res ) : void
pos int
res string
return void
        private void Throw(int pos, string res)
        {
            _ps.charPos = pos;
            Throw(res, string.Empty);
        }

Same methods

XmlTextReaderImpl::Throw ( Exception e ) : 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::Throw ( string res, string arg, int lineNo, int linePos ) : void
XmlTextReaderImpl