14 references to Exception
System.ComponentModel.Composition (14)
System\ComponentModel\Composition\CompositionError.cs (6)
68/// The <see cref="Exception"/> that is the underlying cause of the 70/// the <see cref="CompositionError.Exception"/> property to <see langword="null"/>. 94/// The <see cref="Exception"/> that is the underlying cause of the 96/// the <see cref="CompositionError.Exception"/> property to <see langword="null"/>. 139/// The <see cref="Exception"/> that is the underlying cause of the 154get { return Exception; }
System\ComponentModel\Composition\CompositionErrorDebuggerProxy.cs (1)
27get { return _error.Exception; }
System\ComponentModel\Composition\CompositionException.cs (5)
143if (error.Exception != null) 145if (error.Exception is CompositionException ce) 153errors.Add(error.Exception); 297if (error.Exception == null) 305VisitException(error.Exception, context);
System\ComponentModel\Composition\CompositionExceptionDebuggerProxy.cs (2)
32if (error.Exception != null) 34errors.Add(error.Exception);