AGENT.PackageViewer.Command.DelegateCommand.CanExecute C# (CSharp) Method

CanExecute() public method

public CanExecute ( ) : bool
return bool
        public bool CanExecute()
        {
            bool result = true;
            Func<bool> canExecuteHandler = this.canExecuteSimple;
            if (canExecuteHandler != null)
            {
                result = canExecuteHandler();
            }

            return result;
        }

Same methods

DelegateCommand::CanExecute ( object parameter ) : bool