Compartir a través de


ThreadPoolTimer.CreateTimer Método

Definición

Sobrecargas

CreateTimer(TimerElapsedHandler, TimeSpan)

Crea un temporizador de un solo uso.

CreateTimer(TimerElapsedHandler, TimeSpan, TimerDestroyedHandler)

Crea un temporizador de un solo uso y especifica un método al que llamar una vez completado el temporizador. El temporizador se completa cuando el temporizador ha expirado y ha finalizado la llamada final al controlador .

CreateTimer(TimerElapsedHandler, TimeSpan)

Crea un temporizador de un solo uso.

public:
 static ThreadPoolTimer ^ CreateTimer(TimerElapsedHandler ^ handler, TimeSpan delay);
/// [Windows.Foundation.Metadata.Overload("CreateTimer")]
 static ThreadPoolTimer CreateTimer(TimerElapsedHandler const& handler, TimeSpan const& delay);
[Windows.Foundation.Metadata.Overload("CreateTimer")]
public static ThreadPoolTimer CreateTimer(TimerElapsedHandler handler, System.TimeSpan delay);
function createTimer(handler, delay)
Public Shared Function CreateTimer (handler As TimerElapsedHandler, delay As TimeSpan) As ThreadPoolTimer

Parámetros

handler
TimerElapsedHandler

Método al que se va a llamar cuando expira el temporizador.

delay
TimeSpan TimeSpan

Cantidad de tiempo hasta que expire el temporizador.

C++ Esta cantidad de tiempo se especifica en tics (unidades de 100 nanosegundos) mediante la estructura Windows::Foundation::TimeSpan .

JavaScript y C# Esta cantidad de tiempo se especifica mediante la estructura System.TimeSpan . Se puede especificar en tics o se puede especificar en milisegundos, segundos, etc.

Devoluciones

Instancia de un temporizador de un solo uso.

Atributos

Consulte también

Se aplica a

CreateTimer(TimerElapsedHandler, TimeSpan, TimerDestroyedHandler)

Crea un temporizador de un solo uso y especifica un método al que llamar una vez completado el temporizador. El temporizador se completa cuando el temporizador ha expirado y ha finalizado la llamada final al controlador .

public:
 static ThreadPoolTimer ^ CreateTimer(TimerElapsedHandler ^ handler, TimeSpan delay, TimerDestroyedHandler ^ destroyed);
/// [Windows.Foundation.Metadata.Overload("CreateTimerWithCompletion")]
 static ThreadPoolTimer CreateTimer(TimerElapsedHandler const& handler, TimeSpan const& delay, TimerDestroyedHandler const& destroyed);
[Windows.Foundation.Metadata.Overload("CreateTimerWithCompletion")]
public static ThreadPoolTimer CreateTimer(TimerElapsedHandler handler, System.TimeSpan delay, TimerDestroyedHandler destroyed);
function createTimer(handler, delay, destroyed)
Public Shared Function CreateTimer (handler As TimerElapsedHandler, delay As TimeSpan, destroyed As TimerDestroyedHandler) As ThreadPoolTimer

Parámetros

handler
TimerElapsedHandler

Método al que se va a llamar cuando expira el temporizador.

delay
TimeSpan TimeSpan

Cantidad de tiempo hasta que expire el temporizador.

C++ Esta cantidad de tiempo se especifica en tics (unidades de 100 nanosegundos) mediante la estructura Windows::Foundation::TimeSpan .

JavaScript y C# Esta cantidad de tiempo se especifica mediante la estructura System.TimeSpan . Se puede especificar en tics o se puede especificar en milisegundos, segundos, etc.

destroyed
TimerDestroyedHandler

Método al que se va a llamar una vez completado el temporizador.

Devoluciones

Instancia de un temporizador de un solo uso.

Atributos

Consulte también

Se aplica a