The Dispatcher
class maintains an internal List<DispatcherTimer>
for active timers. The internal Dispatcher.AddTimer()
method adds it, called on the Start()
method. RemoveTimer()
is called by the Stop()
method.
I need to clear that internal List<DispatcherTimer>
. Is it possible to Stop/Remove all timers in the Dispatcher
?