System.Waf.Foundation.ThrottledAction.ThrottledAction C# (CSharp) Method

ThrottledAction() public method

Initializes a new instance of the ThrottledAction class.
The argument action must not be null.
public ThrottledAction ( Action action ) : System.Threading
action Action The action that should be throttled.
return System.Threading
        public ThrottledAction(Action action)
            : this(action, ThrottledActionMode.InvokeMaxEveryDelayTime, TimeSpan.FromMilliseconds(10))
        {
        }

Same methods

ThrottledAction::ThrottledAction ( Action action, ThrottledActionMode mode, TimeSpan delayTime ) : System.Threading