System.Configuration.Configuration.ThrowException C# (CSharp) Метод

ThrowException() приватный Метод

private ThrowException ( string text, System.IO.XmlReader reader ) : void
text string
reader System.IO.XmlReader
Результат void
		private void ThrowException (string text, XmlReader reader)
		{
			IXmlLineInfo li = reader as IXmlLineInfo;
			throw new ConfigurationException (text, streamName, li != null ? li.LineNumber : 0);
		}
	}