8 instantiations of XamlParseException
PresentationBuildTasks (8)
Framework\System\Windows\Markup\MarkupExtensionParser.cs (1)
1762XamlParseException parseException = new XamlParseException(message,
Framework\System\Windows\Markup\XAMLParseException.cs (1)
485xamlParseException = new XamlParseException(message, lineNumber, linePosition, innerException);
Framework\System\Windows\Markup\XamlParser.cs (3)
244XamlParseException parseException = new XamlParseException(newMessage, lineNumber, linePosition, e); 973XamlParseException parseException = new XamlParseException(message, 1460XamlParseException parseException = new XamlParseException(message,
Framework\System\Windows\Markup\XamlReaderHelper.cs (2)
1415parseException = new XamlParseException(messageWithLineNumber, lineNumber, linePosition, innerException); 1428XamlParseException parseException = new XamlParseException(message,
Framework\System\Windows\Markup\XamlTypeMapper.cs (1)
789XamlParseException parseException = new XamlParseException(message, lineNumber, linePosition);
23 references to XamlParseException
PresentationBuildTasks (23)
BuildTasks\Ms\Internal\MarkupCompiler\MarkupCompiler.cs (3)
536catch (XamlParseException e) 772XamlParseException xe = e as XamlParseException;
Framework\System\Windows\Markup\BamlRecordWriter.cs (1)
98catch (XamlParseException e)
Framework\System\Windows\Markup\MarkupExtensionParser.cs (1)
1762XamlParseException parseException = new XamlParseException(message,
Framework\System\Windows\Markup\StyleXamlParser.cs (1)
1463internal override void ParseError(XamlParseException e)
Framework\System\Windows\Markup\TemplateXamlParser.cs (1)
1677internal override void ParseError(XamlParseException e)
Framework\System\Windows\Markup\XAMLParseException.cs (3)
461XamlParseException xamlParseException; 477if (innerException is TargetInvocationException && innerException.InnerException is XamlParseException) 479xamlParseException = (XamlParseException)innerException.InnerException;
Framework\System\Windows\Markup\XamlParser.cs (6)
209if (e is XamlParseException) 215if (e is TargetInvocationException && e.InnerException is XamlParseException) 244XamlParseException parseException = new XamlParseException(newMessage, lineNumber, linePosition, e); 973XamlParseException parseException = new XamlParseException(message, 1171internal virtual void ParseError(XamlParseException e) 1460XamlParseException parseException = new XamlParseException(message,
Framework\System\Windows\Markup\XamlReaderHelper.cs (5)
421catch (XamlParseException e) 1405XamlParseException parseException; 1409if (innerException is TargetInvocationException && innerException.InnerException is XamlParseException) 1411parseException = innerException.InnerException as XamlParseException; 1428XamlParseException parseException = new XamlParseException(message,
Framework\System\Windows\Markup\XamlTypeMapper.cs (2)
789XamlParseException parseException = new XamlParseException(message, lineNumber, linePosition); 4038XamlParseException.ThrowException(message, innerException, _lineNumber, _linePosition);