Dispatcher.BeginInvoke Method (Action)
[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]
Executes the specified delegate asynchronously on the thread the Dispatcher is associated with.
Assembly: System.Windows (in System.Windows.dll)
Parameters
- a
- Type: System.Action
A delegate to a method that takes no arguments and does not return a value, which is pushed onto the Dispatcher event queue.
Return Value
Type: System.Windows.Threading.DispatcherOperationAn object, which is returned immediately after BeginInvoke is called, that represents the operation that has been posted to the Dispatcher queue.
Show: