Chirp.Radio.DelegateCommand.DelegateCommand C# (CSharp) Method

DelegateCommand() public method

public DelegateCommand ( Action executeAction, bool>.Func canExecute ) : System
executeAction Action
canExecute bool>.Func
return System
        public DelegateCommand(Action<object> executeAction, Func<object, bool> canExecute)
        {
            if (executeAction == null)
            {
                throw new ArgumentNullException("executeAction");
            }
            this.executeAction = executeAction;
            this.canExecute = canExecute;
        }

Same methods

DelegateCommand::DelegateCommand ( Action executeAction ) : System