System.Windows.Interactivity.Trigger.InvokeActions C# (CSharp) Method

InvokeActions() protected method

Invokes the associated actions.
protected InvokeActions ( EventArgs e ) : void
e System.EventArgs The event data associated with the invocation.
return void
        protected void InvokeActions(EventArgs e)
        {
            if (_action != null) {
                _action.InvokeActionInternal(e);
            }
            foreach (TriggerAction action in _actions) {
                action.InvokeActionInternal(e);
            }
        }