Skip to content

Latest commit

 

History

History
26 lines (17 loc) · 1.14 KB

icorepointerinputsource2_dispatcherqueue.md

File metadata and controls

26 lines (17 loc) · 1.14 KB
-api-id -api-type
P:Windows.UI.Core.ICorePointerInputSource2.DispatcherQueue
winrt property

Windows.UI.Core.ICorePointerInputSource2.DispatcherQueue

-description

Gets the DispatcherQueue associated with a platform object.

-property-value

The DispatcherQueue for managing prioritized tasks that execute in a serial fashion on a thread.

-remarks

Some platform objects require thread affinity for posting events back to the thread where the object was instantiated. The DispatcherQueue lets you post work to this thread.

These platform objects can be created on the UI thread, where the DispatcherQueue already exists, or they can be created on a long running, non-UI thread with a DispatcherQueue created with the DispatcherQueueController.CreateOnDedicatedThread method.

-see-also

-examples