7 types derived from XamlException
System.Xaml (7)
System\Xaml\XamlException.cs (7)
94public class XamlParseException : XamlException 125public class XamlObjectWriterException : XamlException 142public class XamlDuplicateMemberException : XamlException 187public class XamlInternalException : XamlException 207public class XamlSchemaException : XamlException 223public class XamlObjectReaderException : XamlException 246public 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)
266public XamlException WithLineInfo(XamlException ex)
System\Xaml\InfosetObjects\XamlObjectWriter.cs (4)
1040XamlException IAddLineInfo.WithLineInfo(XamlException ex) 2646XamlException 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);