7 types derived from XamlException
System.Xaml (7)
System\Xaml\XamlException.cs (7)
90public class XamlParseException : XamlException 121public class XamlObjectWriterException : XamlException 138public class XamlDuplicateMemberException : XamlException 180public class XamlInternalException : XamlException 200public class XamlSchemaException : XamlException 216public class XamlObjectReaderException : XamlException 239public class XamlXmlWriterException : XamlException
7 instantiations of XamlException
System.Xaml (7)
System\Xaml\WriterDelegate.cs (2)
77_addDelegate = delegate { throw new XamlException(SR.WriterIsClosed); }; 80_addLineInfoDelegate = delegate { throw new XamlException(SR.WriterIsClosed); };
System\Xaml\XamlNodeList.cs (5)
57throw new XamlException(SR.CloseXamlWriterBeforeReading); 61throw new XamlException(SR.SchemaContextNotInitialized); 81throw new XamlException(SR.CannotWriteClosedWriter); 89throw new XamlException(SR.CannotWriteClosedWriter); 104throw new XamlException(SR.CloseXamlWriterBeforeReading);
31 references to XamlException
PresentationFramework (3)
System\Windows\Markup\XamlReader.cs (3)
513if (e is System.Xaml.XamlException) 515System.Xaml.XamlException xe = (System.Xaml.XamlException)e;
System.Xaml (28)
System\Xaml\Context\NameFixupToken.cs (4)
90XamlException IAddLineInfo.WithLineInfo(XamlException ex) 194XamlException IAddLineInfo.WithLineInfo(XamlException ex)
System\Xaml\Context\ObjectWriterContext.cs (2)
255public XamlException WithLineInfo(XamlException ex)
System\Xaml\InfosetObjects\XamlObjectWriter.cs (4)
1033XamlException IAddLineInfo.WithLineInfo(XamlException ex) 2633XamlException IAddLineInfo.WithLineInfo(XamlException ex)
System\Xaml\Parser\XamlScanner.cs (2)
859XamlException LineInfo(XamlException e)
System\Xaml\Runtime\ClrObjectRuntime.cs (5)
577if (CriticalExceptions.IsCriticalException(e) || e is XamlException) 600if (CriticalExceptions.IsCriticalException(e) || e is XamlException) 669private XamlException CreateException(string message) 674private XamlException CreateException(string message, Exception innerException) 676XamlException ex;
System\Xaml\Runtime\PartialTrustTolerantRuntime.cs (7)
143catch (XamlException ex) 172catch (XamlException ex) 201catch (XamlException e) 232catch (XamlException e) 291catch (XamlException e) 337catch (XamlException e) 365catch (XamlException e)
System\Xaml\XamlException.cs (2)
25XamlException xex = innerException as XamlException;
System\Xaml\XamlRuntime.cs (2)
17XamlException WithLineInfo(XamlException ex);