CoreProcessEventsOption Enumeration

Specifies the set of exclusive event-processing options passed to ProcessEvents.

Syntax

public enum class CoreProcessEventsOption  

Members

Member Value Description
ProcessAllIfPresent Dispatch all events currently pending in the queue. If no events are pending, do not wait for a new event to be raised but instead return immediately.This option is provided specifically for view provider implementations with IFrameworkView.
ProcessOneAndAllPending Dispatch all currently available events in the queue. If no events are pending, wait for the next new event.
ProcessOneIfPresent Dispatch one event if it is currently pending in the queue. If no events are pending, do not wait for a new event to be raised but instead return immediately.
ProcessUntilQuit Wait for new events and dispatch all available events. Continue this behavior until the window is closed or the application calls the Close method on the CoreWindow instance.

Remarks

ProcessOneIfPresent is not supported on Windows Phone.

Requirements

Namespace: Windows.UI.Core

Metadata: windows.winmd

See also

Reference

Windows.UI.Core Namespace