DispatcherOperationStatus Enumeration
.NET Framework (current version)
Describes the possible values for the status of a DispatcherOperation.
Assembly: WindowsBase (in WindowsBase.dll)
| Member name | Description | |
|---|---|---|
| Aborted | The operation has aborted. | |
| Completed | The operation is completed. | |
| Executing | The operation started executing, but has not completed. | |
| Pending | The operation is pending and is still in the Dispatcher queue. |
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.
.NET Framework
Available since 3.0
Available since 3.0
Show: