Dispatcher.BeginInvokeShutdown(DispatcherPriority) Method

Definition

Initiates shutdown of the Dispatcher asynchronously.

public:
 void BeginInvokeShutdown(System::Windows::Threading::DispatcherPriority priority);
[System.Security.SecurityCritical]
public void BeginInvokeShutdown (System.Windows.Threading.DispatcherPriority priority);
public void BeginInvokeShutdown (System.Windows.Threading.DispatcherPriority priority);
[<System.Security.SecurityCritical>]
member this.BeginInvokeShutdown : System.Windows.Threading.DispatcherPriority -> unit
member this.BeginInvokeShutdown : System.Windows.Threading.DispatcherPriority -> unit
Public Sub BeginInvokeShutdown (priority As DispatcherPriority)

Parameters

priority
DispatcherPriority

The priority at which to begin shutting down the dispatcher.

Attributes

Remarks

BeginInvokeShutdown demands unrestricted UI Permissions.

When the Dispatcher starts to shut down, the ShutdownStarted event is raised and HasShutdownStarted is set to true.

The Dispatcher does not shut down completely until the event queue unwinds.

When the Dispatcher finishes shutting down, the ShutdownFinished event is raised and the HasShutdownFinished property is set to true.

Once the shutdown process begins, all pending work items in the queue are aborted.

Applies to