Represents an object that is used to interact with an operation that has been posted to the Dispatcher queue.
System.Windows.Threading.DispatcherOperation
System.Windows.Threading.DispatcherOperation<TResult>
Namespace: System.Windows.Threading
Assembly: WindowsBase (in WindowsBase.dll)
The DispatcherOperation type exposes the following members.
| Name | Description | |
|---|---|---|
![]() | Dispatcher | Gets the Dispatcher that the operation was posted to. |
![]() | Priority | Gets or sets the priority of the operation in the Dispatcher queue. |
![]() | Result | Gets the result of the operation after it has completed. |
![]() | Status | Gets the current status of the operation.. |
![]() | Task | Gets a Task that represents the current operation. |
| Name | Description | |
|---|---|---|
![]() | Abort | Aborts the operation. |
![]() | Equals(Object) | Determines whether the specified object is equal to the current object. (Inherited from Object.) |
![]() | Finalize | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object.) |
![]() | GetAwaiter | Infrastructure. Returns an object that is notified when the asynchronous operation is finished. |
![]() | GetHashCode | Serves as a hash function for a particular type. (Inherited from Object.) |
![]() | GetType | Gets the Type of the current instance. (Inherited from Object.) |
![]() | InvokeDelegateCore | Begins the operation that is associated with this DispatcherOperation. |
![]() | MemberwiseClone | Creates a shallow copy of the current Object. (Inherited from Object.) |
![]() | ToString | Returns a string that represents the current object. (Inherited from Object.) |
![]() | Wait() | Waits for the operation to complete |
![]() | Wait(TimeSpan) | Waits for the operation to complete in the specified period of time. |
BeginInvoke returns a DispatcherOperation object when it is called.
The DispatcherOperation object can be used to interact with the delegate on the Dispatcher queue, such as changing the priority of the operation or aborting the operation.
To obtain the return value of the invoked delegate, use the Result property.
The DispatcherOperation is not an exception handling boundary. This means that exceptions are handled by the Dispatcher and are not preserved by the operation.
Windows 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 (Server Core Role not supported), Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
