FindMyFiles
FindMyFiles.Services
IDispatcherTimer Interface
The one-shot timer handle returned by CreateOneShotTimer(TimeSpan, Action) — fires on the UI thread and is restartable for debounce.
public interface IDispatcherTimer
Methods
IDispatcherTimer.Start() Method
Arm the timer. Calling while a tick is still pending restarts the interval (debounce semantics).
void Start();
IDispatcherTimer.Stop() Method
Cancel a pending tick, if any. Idempotent.
void Stop();