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

Throw() private method

private Throw ( Exception e ) : void
e Exception
return void
        private void Throw(Exception e)
        {
            SetErrorState();
            XmlException xmlEx = e as XmlException;
            if (xmlEx != null)
            {
                _curNode.SetLineInfo(xmlEx.LineNumber, xmlEx.LinePosition);
            }
            throw e;
        }

Same methods

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