System.Threading.Tasks.TaskStatus Enumeration

Represents the current stage in the lifecycle of a System.Threading.Tasks.Task.

Syntax

public enum TaskStatus

Remarks

Documentation for this section has not yet been entered.

Members

Member NameDescription
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. For more information, see Task Cancellation.

Created

The task has been initialized but has not yet been scheduled.

Faulted

The task completed due to an unhandled exception.

RanToCompletion

The task completed execution successfully.

Running

The task is running but has not yet completed.

WaitingForActivation

The task is waiting to be activated and scheduled internally by the .NET Framework infrastructure.

WaitingForChildrenToComplete

The task has finished executing and is implicitly waiting for attached child tasks to complete.

WaitingToRun

The task has been scheduled for execution but has not yet begun executing.

Requirements

Namespace: System.Threading.Tasks
Assembly: mscorlib (in mscorlib.dll)
Assembly Versions: 4.0.0.0