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

Throw() private method

private Throw ( string res, string arg, Exception innerException ) : void
res string
arg string
innerException Exception
return void
        private void Throw(string res, string arg, Exception innerException)
        {
            Throw(res, new string[] { arg }, innerException);
        }

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, int lineNo, int linePos ) : void
XmlTextReaderImpl