You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// <para>Used to debounce (rate-limit) an event. The action will be postponed and executed after the interval has elapsed. At the end of the interval, the function will be called with the arguments that were passed most recently to the debounced function.</para>
@@ -27,18 +27,18 @@ public static class DispatcherTimerExtensions
27
27
/// <param name="immediate">Determines if the action execute on the leading edge instead of trailing edge.</param>
28
28
/// <example>
29
29
/// <code>
30
-
/// private DispatcherTimer _typeTimer = new DispatcherTimer();
30
+
/// private DispatcherQueueTimer _typeTimer = new DispatcherQueueTimer();
31
31
///
32
32
/// _typeTimer.Debounce(async () =>
33
33
/// {
34
34
/// // Only executes this code after 0.3 seconds have elapsed since last trigger.
0 commit comments