CoreDispatcherPriority Enumeration

Defines the priority for window event dispatches.

Syntax

public enum class CoreDispatcherPriority  

Members

Member Value Description
High High priority. Delegates are invoked immediately for all synchronous requests. Asynchronous requests are queued and processed before any other request type.
Caution Do not use this priority level in your app. It is reserved for system events. Using this priority can lead to the starvation of other messages, including system events.
Low -1  Low priority. Delegates are processed when the window’s main thread is idle and there is no input pending in the queue.
Normal Normal priority. Delegates are processed in the order they are scheduled.

Remarks

Requirements

Namespace: Windows.UI.Core

Metadata: windows.winmd

See also

Reference

Windows.UI.Core Namespace