Click or drag to resize

IDispatcher Interface

Represents a dispatcher. Implementations of this interface are responsible for processing the window messages and dispatching the events to the client.

Namespace:  Cauldron.XAML.Threading
Assembly:  Cauldron.Win32.WPF (in Cauldron.Win32.WPF.dll) Version: 3.2.0.1 (3.2.0.1)
Syntax
C#
public interface IDispatcher

The IDispatcher type exposes the following members.

Properties
  NameDescription
Public propertyHasThreadAccess
Determines whether the calling thread has access to this IDispatcher
Top
Methods
  NameDescription
Public methodRunAsync(Action)
Executes the specified delegate asynchronously with the specified arguments, with priority Normal, on the thread that the IDispatcher was created on.
Public methodRunAsync(DispatcherPriority, Action)
Executes the specified delegate asynchronously with the specified arguments, at the specified priority, on the thread that the IDispatcher was created on.
Top
See Also