CoreProcessEventsOption
CoreProcessEventsOption
CoreProcessEventsOption
CoreProcessEventsOption
Enum
Definition
Specifies the set of exclusive event-processing options passed to ProcessEvents.
public : enum class CoreProcessEventsOptionpublic enum CoreProcessEventsOptionPublic Enum CoreProcessEventsOption// This API is not available in Javascript.
- Attributes
| Device family |
Windows 10 (introduced v10.0.10240.0)
|
| API contract |
Windows.Foundation.UniversalApiContract (introduced v1)
|
Fields
| ProcessAllIfPresent ProcessAllIfPresent ProcessAllIfPresent 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, and to be used in Windows Store app using DirectX with C++. |
| ProcessOneAndAllPending ProcessOneAndAllPending ProcessOneAndAllPending ProcessOneAndAllPending | Dispatch all currently available events in the queue. If no events are pending, wait for the next new event. |
| ProcessOneIfPresent ProcessOneIfPresent ProcessOneIfPresent 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 ProcessUntilQuit ProcessUntilQuit 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
Windows Phone 8
ProcessOneIfPresent is not supported on Windows Phone.