CoreDispatcher.TryRunAsync(CoreDispatcherPriority, DispatchedHandler) Metodo
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Tenta di pianificare il callback specificato nel thread dell'interfaccia utente da un thread di lavoro e restituisce i risultati in modo asincrono.
public:
virtual IAsyncOperation<bool> ^ TryRunAsync(CoreDispatcherPriority priority, DispatchedHandler ^ agileCallback) = TryRunAsync;
/// [Windows.Foundation.Metadata.RemoteAsync]
IAsyncOperation<bool> TryRunAsync(CoreDispatcherPriority const& priority, DispatchedHandler const& agileCallback);
[Windows.Foundation.Metadata.RemoteAsync]
public IAsyncOperation<bool> TryRunAsync(CoreDispatcherPriority priority, DispatchedHandler agileCallback);
function tryRunAsync(priority, agileCallback)
Public Function TryRunAsync (priority As CoreDispatcherPriority, agileCallback As DispatchedHandler) As IAsyncOperation(Of Boolean)
Parametri
- priority
- CoreDispatcherPriority
Specifica la priorità per l'invio di eventi. Impostare questa opzione su CoreDispatcherPriority.Normal.
- agileCallback
- DispatchedHandler
Callback in cui viene restituito il dispatcher quando viene inviato l'evento.
Restituisce
Operazione asincrona.
- Attributi
Commenti
Se viene chiamato durante l'arresto di CoreDispatcher, questo metodo verrà completato correttamente e restituirà false.