DispatcherExtensions Class
Provides a set of static methods that extend the Dispatcher class.
Assembly: System.Windows.Presentation (in System.Windows.Presentation.dll)
| Name | Description | |
|---|---|---|
![]() ![]() | BeginInvoke(Dispatcher^, Action^) | Executes the specified delegate asynchronously with normal priority on the thread that the specified Dispatcher was created on. |
![]() ![]() | BeginInvoke(Dispatcher^, Action^, DispatcherPriority) | Executes the specified delegate asynchronously with the specified priority on the thread that the specified Dispatcher was created on. |
![]() ![]() | Invoke(Dispatcher^, Action^) | Executes the specified delegate synchronously with normal priority on the thread that the specified Dispatcher was created on. |
![]() ![]() | Invoke(Dispatcher^, Action^, DispatcherPriority) | Executes the specified delegate synchronously with the specified priority on the thread that the specified Dispatcher was created on. |
![]() ![]() | Invoke(Dispatcher^, Action^, TimeSpan) | Executes the specified delegate synchronously on the thread that the specified Dispatcher was created on, and stops execution after the specified time-out period. |
![]() ![]() | Invoke(Dispatcher^, Action^, TimeSpan, DispatcherPriority) | Executes the specified delegate synchronously with the specified priority on the thread that the specified Dispatcher was created on, and stops execution after the specified time-out period. |
The methods in this class are defined as extension methods that extend the Dispatcher class. This means that they can be called like an instance method on any Dispatcher object.
Available since 3.5
Any public static ( Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

