Click or drag to resize

DispatcherPriority Enumeration

Describes the priorities at which operations can be invoked

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 enum DispatcherPriority
Members
  Member nameValueDescription
Idle-2 Lowest priority. Use this priority for background tasks. Delegates are processed when the window's main thread is idle and there is no input pending in the queue.
Low-1 Low priority. Delegates are processed when the window's main thread is idle and there is no input pending in the queue.
Normal0 Normal priority. Delegates are processed in the order they are scheduled.
High1 High priority. Delegates are invoked immediately for all synchronous requests. Asynchronous requests are queued and processed before any other request type.
See Also