AGENT.PackageViewer.Command.DelegateCommand.CanExecute C# (CSharp) Метод

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

public CanExecute ( ) : bool
Результат 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