APG.CodeHelper.Actions.ActionManager.Execute C# (CSharp) Метод

Execute() публичный Метод

������ ������ �������� �������, ��������� ������� � �������� ������ � ���� ����������� ������
public Execute ( object sender, System actionType ) : void
sender object ������, ���������� ���������
actionType System ����� �������, ��������� ������� ����� ������
Результат void
        public void Execute(object sender, System.Type actionType, params object[] actionParams)
        {
            IAction action = Activator.CreateInstance(actionType, actionParams) as IAction;
            action.Execute(sender);
            Executed.Push(action);
            OnExecute(this, new EventArgs());
        }