DispatcherOperationStatus Enum

Definition

Describes the possible values for the status of a DispatcherOperation.

public enum class DispatcherOperationStatus
public enum DispatcherOperationStatus
type DispatcherOperationStatus = 
Public Enum DispatcherOperationStatus
Inheritance
DispatcherOperationStatus

Fields

Aborted 1

The operation has aborted.

Completed 2

The operation is completed.

Executing 3

The operation started executing, but has not completed.

Pending 0

The operation is pending and is still in the Dispatcher queue.

Remarks

A DispatcherOperation is returned after a call to BeginInvoke. The DispatcherOperation can be used to interact with the delegate on the Dispatcher queue, such as changing the priority of the operation or aborting the operation.

The stages of a DispatcherOperation are Pending, Executing, and Completed. At any point before the operation completes, the status can be set to Aborted.

Applies to