1 type derived from XamlInternalException
System.Xaml.Tests (1)
System\Xaml\XamlInternalExceptionTests.cs (1)
66
private class SubXamlInternalException :
XamlInternalException
29 instantiations of XamlInternalException
System.Xaml (25)
System\Xaml\Context\XamlContext.cs (1)
80
throw new
XamlInternalException
(SR.Format(SR.ParentlessPropertyElement, propName.ScopedName));
System\Xaml\InfosetObjects\DeferredWriter.cs (14)
82
throw new
XamlInternalException
(SR.Format(SR.TemplateNotCollected, methodName));
104
throw new
XamlInternalException
(SR.Format(SR.MissingCase, _mode.ToString(), methodName));
117
throw new
XamlInternalException
(SR.Format(SR.TemplateNotCollected, "WriteEndObject"));
134
throw new
XamlInternalException
(SR.Format(SR.MissingCase, _mode.ToString(), "WriteEndObject"));
155
throw new
XamlInternalException
(SR.Format(SR.TemplateNotCollected, "WriteMember"));
163
throw new
XamlInternalException
(SR.Format(SR.MissingCase, _mode.ToString(), "WriteMember"));
176
throw new
XamlInternalException
(SR.Format(SR.TemplateNotCollected, "WriteEndMember"));
184
throw new
XamlInternalException
(SR.Format(SR.MissingCase, _mode.ToString(), "WriteEndMember"));
197
throw new
XamlInternalException
(SR.Format(SR.TemplateNotCollected, "WriteValue"));
223
throw new
XamlInternalException
(SR.Format(SR.MissingCase, _mode.ToString(), "WriteValue"));
235
throw new
XamlInternalException
(SR.Format(SR.TemplateNotCollected, "WriteNamespace"));
248
throw new
XamlInternalException
(SR.Format(SR.MissingCase, _mode.ToString(), "WriteNamespace"));
289
throw new
XamlInternalException
(SR.Format(SR.TemplateNotCollected, nameof(SetLineInfo)));
305
throw new
XamlInternalException
(SR.Format(SR.MissingCase, _mode.ToString(), nameof(SetLineInfo)));
System\Xaml\InfosetObjects\XamlObjectWriter.cs (7)
110
throw _context.WithLineInfo(new
XamlInternalException
());
1145
throw ctx.WithLineInfo(new
XamlInternalException
(SR.ConstructImplicitType));
1177
throw ctx.WithLineInfo(new
XamlInternalException
(errMsg));
1236
throw ctx.WithLineInfo(new
XamlInternalException
(SR.NonMEWithPositionalParameters));
1255
throw ctx.WithLineInfo(new
XamlInternalException
(SR.PositionalParamsWrongLength));
2127
throw new
XamlInternalException
(SR.BadStateObjectWriter);
2569
throw new
XamlInternalException
("Token's Target Property '{0}' != '{1}' the Token's Context parent Property");
System\Xaml\Parser\XamlScanner.cs (1)
799
throw new
XamlInternalException
(SR.AttributeUnhandledKind);
System\Xaml\Runtime\ClrObjectRuntime.cs (1)
558
throw new
XamlInternalException
(SR.Format(SR.XmlValueNotReader, property.Name));
System\Xaml\XamlReader.cs (1)
84
throw new
XamlInternalException
("SkipFromTo() called incorrectly");
System.Xaml.Tests (4)
System\Xaml\XamlInternalExceptionTests.cs (4)
16
var exception = new
XamlInternalException
();
26
var exception = new
XamlInternalException
("message");
44
var exception = new
XamlInternalException
(message, innerException);
61
var exception = new
XamlInternalException
();
5 references to XamlInternalException
System.Xaml.Tests (5)
System\Xaml\XamlInternalExceptionTests.cs (4)
16
var
exception = new XamlInternalException();
26
var
exception = new XamlInternalException("message");
44
var
exception = new XamlInternalException(message, innerException);
61
var
exception = new XamlInternalException();
System\Xaml\XamlReaderTests.cs (1)
52
Assert.Throws<
XamlInternalException
>(() => reader.Skip());