Schedule a timer event for execution.

C# | Visual Basic | Managed C++ |
IAlarm Schedule ( double timeout, AlarmCallback callback, Object context )
Function Schedule ( _ timeout As Double, _ callback As AlarmCallback, _ context As Object _ ) As IAlarm
IAlarm^ Schedule ( double timeout, AlarmCallback^ callback, Object^ context )

- timeout (Double)
- The time that needs to elapse until the timer event can be executed.
- callback (AlarmCallback)
- The callback to invoke to process the timer event.
- context (Object)
- The context object to be passed to the callback

The reference to the timer event.