Compartir a través de


DispatcherExtensions.StartTimer Método

Definición

Inicia un temporizador en el contexto especificado IDispatcher .

public:
[System::Runtime::CompilerServices::Extension]
 static void StartTimer(Microsoft::Maui::Dispatching::IDispatcher ^ dispatcher, TimeSpan interval, Func<bool> ^ callback);
public static void StartTimer (this Microsoft.Maui.Dispatching.IDispatcher dispatcher, TimeSpan interval, Func<bool> callback);
static member StartTimer : Microsoft.Maui.Dispatching.IDispatcher * TimeSpan * Func<bool> -> unit
<Extension()>
Public Sub StartTimer (dispatcher As IDispatcher, interval As TimeSpan, callback As Func(Of Boolean))

Parámetros

dispatcher
IDispatcher

Se IDispatcher llama a la instancia de este método.

interval
TimeSpan

Establece la cantidad de tiempo entre tics del temporizador.

callback
Func<Boolean>

Devolución de llamada en la que el distribuidor devuelve cuando se envía el evento. Si el resultado de la devolución de llamada es true, el temporizador se repetirá; de lo contrario, el temporizador se detiene.

Excepciones

Se produce cuando callback es null.

Se aplica a