1 type derived from XamlInternalException
System.Xaml.Tests (1)
System\Xaml\XamlInternalExceptionTests.cs (1)
66private class SubXamlInternalException : XamlInternalException
29 instantiations of XamlInternalException
System.Xaml (25)
System\Xaml\Context\XamlContext.cs (1)
79throw new XamlInternalException(SR.Format(SR.ParentlessPropertyElement, propName.ScopedName));
System\Xaml\InfosetObjects\DeferredWriter.cs (14)
81throw new XamlInternalException(SR.Format(SR.TemplateNotCollected, methodName)); 103throw new XamlInternalException(SR.Format(SR.MissingCase, _mode.ToString(), methodName)); 116throw new XamlInternalException(SR.Format(SR.TemplateNotCollected, "WriteEndObject")); 133throw new XamlInternalException(SR.Format(SR.MissingCase, _mode.ToString(), "WriteEndObject")); 154throw new XamlInternalException(SR.Format(SR.TemplateNotCollected, "WriteMember")); 162throw new XamlInternalException(SR.Format(SR.MissingCase, _mode.ToString(), "WriteMember")); 175throw new XamlInternalException(SR.Format(SR.TemplateNotCollected, "WriteEndMember")); 183throw new XamlInternalException(SR.Format(SR.MissingCase, _mode.ToString(), "WriteEndMember")); 196throw new XamlInternalException(SR.Format(SR.TemplateNotCollected, "WriteValue")); 222throw new XamlInternalException(SR.Format(SR.MissingCase, _mode.ToString(), "WriteValue")); 234throw new XamlInternalException(SR.Format(SR.TemplateNotCollected, "WriteNamespace")); 247throw new XamlInternalException(SR.Format(SR.MissingCase, _mode.ToString(), "WriteNamespace")); 288throw new XamlInternalException(SR.Format(SR.TemplateNotCollected, nameof(SetLineInfo))); 300throw new XamlInternalException(SR.Format(SR.MissingCase, _mode.ToString(), nameof(SetLineInfo)));
System\Xaml\InfosetObjects\XamlObjectWriter.cs (7)
109throw _context.WithLineInfo(new XamlInternalException()); 1144throw ctx.WithLineInfo(new XamlInternalException(SR.ConstructImplicitType)); 1176throw ctx.WithLineInfo(new XamlInternalException(errMsg)); 1235throw ctx.WithLineInfo(new XamlInternalException(SR.NonMEWithPositionalParameters)); 1254throw ctx.WithLineInfo(new XamlInternalException(SR.PositionalParamsWrongLength)); 2126throw new XamlInternalException(SR.BadStateObjectWriter); 2568throw new XamlInternalException("Token's Target Property '{0}' != '{1}' the Token's Context parent Property");
System\Xaml\Parser\XamlScanner.cs (1)
798throw new XamlInternalException(SR.AttributeUnhandledKind);
System\Xaml\Runtime\ClrObjectRuntime.cs (1)
557throw new XamlInternalException(SR.Format(SR.XmlValueNotReader, property.Name));
System\Xaml\XamlReader.cs (1)
84throw new XamlInternalException("SkipFromTo() called incorrectly");
System.Xaml.Tests (4)
System\Xaml\XamlInternalExceptionTests.cs (4)
16var exception = new XamlInternalException(); 26var exception = new XamlInternalException("message"); 44var exception = new XamlInternalException(message, innerException); 61var exception = new XamlInternalException();
5 references to XamlInternalException
System.Xaml.Tests (5)
System\Xaml\XamlInternalExceptionTests.cs (4)
16var exception = new XamlInternalException(); 26var exception = new XamlInternalException("message"); 44var exception = new XamlInternalException(message, innerException); 61var exception = new XamlInternalException();
System\Xaml\XamlReaderTests.cs (1)
52Assert.Throws<XamlInternalException>(() => reader.Skip());