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