7 types derived from XamlException
System.Xaml (7)
System\Xaml\XamlException.cs (7)
91public class XamlParseException : XamlException 122public class XamlObjectWriterException : XamlException 139public class XamlDuplicateMemberException : XamlException 181public class XamlInternalException : XamlException 201public class XamlSchemaException : XamlException 217public class XamlObjectReaderException : XamlException 240public 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)
60throw new XamlException(SR.CloseXamlWriterBeforeReading); 64throw new XamlException(SR.SchemaContextNotInitialized); 84throw new XamlException(SR.CannotWriteClosedWriter); 92throw new XamlException(SR.CannotWriteClosedWriter); 107throw new XamlException(SR.CloseXamlWriterBeforeReading);
31 references to XamlException
PresentationFramework (3)
System\Windows\Markup\XamlReader.cs (3)
526if (e is System.Xaml.XamlException) 528System.Xaml.XamlException xe = (System.Xaml.XamlException)e;
System.Xaml (28)
System\Xaml\Context\NameFixupToken.cs (4)
93XamlException IAddLineInfo.WithLineInfo(XamlException ex) 197XamlException IAddLineInfo.WithLineInfo(XamlException ex)
System\Xaml\Context\ObjectWriterContext.cs (2)
258public XamlException WithLineInfo(XamlException ex)
System\Xaml\InfosetObjects\XamlObjectWriter.cs (4)
1035XamlException IAddLineInfo.WithLineInfo(XamlException ex) 2635XamlException IAddLineInfo.WithLineInfo(XamlException ex)
System\Xaml\Parser\XamlScanner.cs (2)
862XamlException LineInfo(XamlException e)
System\Xaml\Runtime\ClrObjectRuntime.cs (5)
579if (CriticalExceptions.IsCriticalException(e) || e is XamlException) 602if (CriticalExceptions.IsCriticalException(e) || e is XamlException) 671private XamlException CreateException(string message) 676private XamlException CreateException(string message, Exception innerException) 678XamlException ex;
System\Xaml\Runtime\PartialTrustTolerantRuntime.cs (7)
145catch (XamlException ex) 174catch (XamlException ex) 203catch (XamlException e) 234catch (XamlException e) 293catch (XamlException e) 339catch (XamlException e) 367catch (XamlException e)
System\Xaml\XamlException.cs (2)
26XamlException xex = innerException as XamlException;
System\Xaml\XamlRuntime.cs (2)
19XamlException WithLineInfo(XamlException ex);