mscorlib(4.0.0.0) API with additions
TaskStatus.cs
2 {
4  [__DynamicallyInvokable]
5  public enum TaskStatus
6  {
8  [__DynamicallyInvokable]
9  Created,
11  [__DynamicallyInvokable]
14  [__DynamicallyInvokable]
17  [__DynamicallyInvokable]
18  Running,
20  [__DynamicallyInvokable]
23  [__DynamicallyInvokable]
26  [__DynamicallyInvokable]
27  Canceled,
29  [__DynamicallyInvokable]
30  Faulted
31  }
32 }
The task has finished executing and is implicitly waiting for attached child tasks to complete.
TaskStatus
Represents the current stage in the lifecycle of a T:System.Threading.Tasks.Task.
Definition: TaskStatus.cs:5
The task is waiting to be activated and scheduled internally by the .NET Framework infrastructure.
The task completed execution successfully.
The current registration was canceled by the user.
The task has been scheduled for execution but has not yet begun executing.