This documentation is archived and is not being maintained.
DispatcherExtensions Class
Visual Studio 2010
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, 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, DispatcherPriority) | Executes the specified delegate synchronously with the specified priority on the thread that the specified Dispatcher was created on. |
![]() ![]() | 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.
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Show:
