Specifies the set of exclusive event-processing options passed to ProcessEvents.
public enum class CoreProcessEventsOption
| Member | Value | Description |
|---|---|---|
| ProcessAllIfPresent | 3 | 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 | 0 | Dispatch all currently available events in the queue. If no events are pending, wait for the next new event. |
| ProcessOneIfPresent | 1 | 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 | 2 | 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. |
ProcessOneIfPresent is not supported on Windows Phone.
Namespace: Windows.UI.Core
Metadata: windows.winmd