mscorlib(4.0.0.0) API with additions
UnobservedTaskExceptionEventArgs.cs
2 {
4  [__DynamicallyInvokable]
6  {
7  private AggregateException m_exception;
8 
9  internal bool m_observed;
10 
13  [__DynamicallyInvokable]
14  public bool Observed
15  {
16  [__DynamicallyInvokable]
17  get
18  {
19  return m_observed;
20  }
21  }
22 
25  [__DynamicallyInvokable]
27  {
28  [__DynamicallyInvokable]
29  get
30  {
31  return m_exception;
32  }
33  }
34 
37  [__DynamicallyInvokable]
39  {
40  m_exception = exception;
41  }
42 
44  [__DynamicallyInvokable]
45  public void SetObserved()
46  {
47  m_observed = true;
48  }
49  }
50 }
Provides data for the event that is raised when a faulted T:System.Threading.Tasks....
bool Observed
Gets whether this exception has been marked as "observed."
void SetObserved()
Marks the P:System.Threading.Tasks.UnobservedTaskExceptionEventArgs.Exception as "observed,...
Represents the base class for classes that contain event data, and provides a value to use for events...
Definition: EventArgs.cs:9
Represents one or more errors that occur during application execution.
UnobservedTaskExceptionEventArgs(AggregateException exception)
Initializes a new instance of the T:System.Threading.Tasks.UnobservedTaskExceptionEventArgs class wit...
Represents errors that occur during application execution.To browse the .NET Framework source code fo...
Definition: Exception.cs:22