CoreDispatcher.TryRunIdleAsync(IdleDispatchedHandler) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Attempts to schedule a callback on the UI thread from a worker thread at idle priority, and returns the results asynchronously.
public:
virtual IAsyncOperation<bool> ^ TryRunIdleAsync(IdleDispatchedHandler ^ agileCallback) = TryRunIdleAsync;
/// [Windows.Foundation.Metadata.RemoteAsync]
IAsyncOperation<bool> TryRunIdleAsync(IdleDispatchedHandler const& agileCallback);
[Windows.Foundation.Metadata.RemoteAsync]
public IAsyncOperation<bool> TryRunIdleAsync(IdleDispatchedHandler agileCallback);
function tryRunIdleAsync(agileCallback)
Public Function TryRunIdleAsync (agileCallback As IdleDispatchedHandler) As IAsyncOperation(Of Boolean)
Parameters
- agileCallback
- IdleDispatchedHandler
The callback on which the idle priority dispatcher returns when the event is dispatched.
Returns
The asynchronous operation.
- Attributes