TaskStatus Enumeration

Task Parallel System.Threading

Represents the current stage in the lifecycle of a Task.

Namespace:  System.Threading.Tasks
Assembly:  System.Threading (in System.Threading.dll)

Syntax

Visual Basic (Declaration)
Public Enumeration TaskStatus
C#
public enum TaskStatus

Members

Member nameDescription
Created
The task has been initialized but has not yet been scheduled.
WaitingForActivation
The task is waiting to be activated and scheduled internally by the .NET Framework infrastructure.
WaitingToRun
The task has been scheduled for execution but has not yet begun executing.
Running
The task is running but has not yet completed.
WaitingForChildrenToComplete
The task has finished executing and is implicitly waiting for attached child tasks to complete.
RanToCompletion
The task completed execution successfully.
Canceled
The task acknowledged cancellation by throwing an OperationCanceledException with its own CancellationToken while the token was in signaled state, or the task's CancellationToken was already signaled before the task started executing.
Faulted
The task completed due to an unhandled exception.

See Also