17 references to XmlException
PresentationBuildTasks (1)
Base\System\Windows\Markup\XmlCompatibilityReader.cs (1)
1482throw new XmlException(string.Format(CultureInfo.InvariantCulture, message, args), null, info == null ? 1 : info.LineNumber,
SMDiagnostics (1)
System\ServiceModel\Diagnostics\ExceptionUtility.cs (1)
231return this.ThrowHelperError(new XmlException(
System.Data.Entity.Design (4)
System\Data\Entity\Design\AspNet\EntityDesignerBuildProvider.cs (3)
65throw new XmlException("No Conceptual Schema node to embed as a resource", null, 0, 0); 70throw new XmlException("No Storage Schema node to embed as a resource", null, 0, 0); 75throw new XmlException("No Mapping node to embed as a resource", null, 0, 0);
System\Data\Entity\Design\AspNet\EntityModelBuildProvider.cs (1)
95outer = new XmlException(error.Message, inner, error.Line, error.Column);
System.IdentityModel (1)
System\IdentityModel\DiagnosticUtilityExtensions.cs (1)
123return ExceptionUtility.ThrowHelperError(new XmlException(
System.ServiceModel (1)
System\ServiceModel\EndpointAddress.cs (1)
979return new XmlException(message, null, lineInfo.LineNumber, lineInfo.LinePosition);
System.Windows.Forms (6)
winforms\Managed\System\Resources\ResXDataNode.cs (3)
497XmlException xml = new XmlException(newMessage, null, dataNodeInfo.ReaderPosition.Y, dataNodeInfo.ReaderPosition.X); 525XmlException xml = new XmlException(newMessage, nse, dataNodeInfo.ReaderPosition.Y, dataNodeInfo.ReaderPosition.X); 537XmlException xml = new XmlException(newMessage, null, dataNodeInfo.ReaderPosition.Y, dataNodeInfo.ReaderPosition.X);
winforms\Managed\System\Resources\ResXResourceReader.cs (3)
408XmlException xml = new XmlException(newMessage, se, pt.Y, pt.X); 416XmlException xml = new XmlException(newMessage, tie.InnerException, pt.Y, pt.X); 429XmlException xmlEx = new XmlException(e.Message, e, pt.Y, pt.X);
System.Xml (2)
System\Xml\XmlException.cs (2)
91public XmlException(String message) : this (message, ((Exception)null), 0, 0) { 98public XmlException(String message, Exception innerException) : this (message, innerException, 0, 0) {
WindowsBase (1)
Base\System\Windows\Markup\XmlCompatibilityReader.cs (1)
1482throw new XmlException(string.Format(CultureInfo.InvariantCulture, message, args), null, info == null ? 1 : info.LineNumber,