Compartir a través de


DispatcherExtensions.DispatchAsync Método

Definición

Sobrecargas

DispatchAsync(IDispatcher, Action)

Programa la acción proporcionada en el subproceso de interfaz de usuario desde un subproceso de trabajo.

DispatchAsync(IDispatcher, Func<Task>)

Programa la función proporcionada en el subproceso de interfaz de usuario desde un subproceso de trabajo.

DispatchAsync<T>(IDispatcher, Func<Task<T>>)

Programa la función proporcionada en el subproceso de interfaz de usuario desde un subproceso de trabajo.

DispatchAsync<T>(IDispatcher, Func<T>)

Programa la devolución de llamada proporcionada en el subproceso de interfaz de usuario desde un subproceso de trabajo y devuelve los resultados de forma asincrónica.

DispatchAsync(IDispatcher, Action)

Source:
DispatcherExtensions.cs
Source:
DispatcherExtensions.cs

Programa la acción proporcionada en el subproceso de interfaz de usuario desde un subproceso de trabajo.

public:
[System::Runtime::CompilerServices::Extension]
 static System::Threading::Tasks::Task ^ DispatchAsync(Microsoft::Maui::Dispatching::IDispatcher ^ dispatcher, Action ^ action);
public static System.Threading.Tasks.Task DispatchAsync (this Microsoft.Maui.Dispatching.IDispatcher dispatcher, Action action);
static member DispatchAsync : Microsoft.Maui.Dispatching.IDispatcher * Action -> System.Threading.Tasks.Task
<Extension()>
Public Function DispatchAsync (dispatcher As IDispatcher, action As Action) As Task

Parámetros

dispatcher
IDispatcher

Instancia IDispatcher en la que se llama a este método.

action
Action

Método que va a ejecutar el distribuidor.

Devoluciones

Task.

Se aplica a

DispatchAsync(IDispatcher, Func<Task>)

Source:
DispatcherExtensions.cs
Source:
DispatcherExtensions.cs

Programa la función proporcionada en el subproceso de interfaz de usuario desde un subproceso de trabajo.

public:
[System::Runtime::CompilerServices::Extension]
 static System::Threading::Tasks::Task ^ DispatchAsync(Microsoft::Maui::Dispatching::IDispatcher ^ dispatcher, Func<System::Threading::Tasks::Task ^> ^ funcTask);
public static System.Threading.Tasks.Task DispatchAsync (this Microsoft.Maui.Dispatching.IDispatcher dispatcher, Func<System.Threading.Tasks.Task> funcTask);
static member DispatchAsync : Microsoft.Maui.Dispatching.IDispatcher * Func<System.Threading.Tasks.Task> -> System.Threading.Tasks.Task
<Extension()>
Public Function DispatchAsync (dispatcher As IDispatcher, funcTask As Func(Of Task)) As Task

Parámetros

dispatcher
IDispatcher

Instancia IDispatcher en la que se llama a este método.

funcTask
Func<Task>

La función que va a ejecutar el distribuidor.

Devoluciones

Task.

Se aplica a

DispatchAsync<T>(IDispatcher, Func<Task<T>>)

Source:
DispatcherExtensions.cs
Source:
DispatcherExtensions.cs

Programa la función proporcionada en el subproceso de interfaz de usuario desde un subproceso de trabajo.

public:
generic <typename T>
[System::Runtime::CompilerServices::Extension]
 static System::Threading::Tasks::Task<T> ^ DispatchAsync(Microsoft::Maui::Dispatching::IDispatcher ^ dispatcher, Func<System::Threading::Tasks::Task<T> ^> ^ funcTask);
public static System.Threading.Tasks.Task<T> DispatchAsync<T> (this Microsoft.Maui.Dispatching.IDispatcher dispatcher, Func<System.Threading.Tasks.Task<T>> funcTask);
static member DispatchAsync : Microsoft.Maui.Dispatching.IDispatcher * Func<System.Threading.Tasks.Task<'T>> -> System.Threading.Tasks.Task<'T>
<Extension()>
Public Function DispatchAsync(Of T) (dispatcher As IDispatcher, funcTask As Func(Of Task(Of T))) As Task(Of T)

Parámetros de tipo

T

Tipo devuelto de este método.

Parámetros

dispatcher
IDispatcher

Instancia IDispatcher en la que se llama a este método.

funcTask
Func<Task<T>>

La función que va a ejecutar el distribuidor.

Devoluciones

Task<T>

Objeto Task<TResult> que contiene información sobre el estado de la operación del distribuidor.

Se aplica a

DispatchAsync<T>(IDispatcher, Func<T>)

Source:
DispatcherExtensions.cs
Source:
DispatcherExtensions.cs

Programa la devolución de llamada proporcionada en el subproceso de interfaz de usuario desde un subproceso de trabajo y devuelve los resultados de forma asincrónica.

public:
generic <typename T>
[System::Runtime::CompilerServices::Extension]
 static System::Threading::Tasks::Task<T> ^ DispatchAsync(Microsoft::Maui::Dispatching::IDispatcher ^ dispatcher, Func<T> ^ func);
public static System.Threading.Tasks.Task<T> DispatchAsync<T> (this Microsoft.Maui.Dispatching.IDispatcher dispatcher, Func<T> func);
static member DispatchAsync : Microsoft.Maui.Dispatching.IDispatcher * Func<'T> -> System.Threading.Tasks.Task<'T>
<Extension()>
Public Function DispatchAsync(Of T) (dispatcher As IDispatcher, func As Func(Of T)) As Task(Of T)

Parámetros de tipo

T

Tipo devuelto de este método.

Parámetros

dispatcher
IDispatcher

Instancia IDispatcher en la que se llama a este método.

func
Func<T>

Método que va a ejecutar el distribuidor.

Devoluciones

Task<T>

Objeto Task<TResult> que contiene información sobre el estado de la operación del distribuidor.

Se aplica a