Chirp.Radio.DelegateCommand.CanExecute C# (CSharp) Метод

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

public CanExecute ( object parameter ) : bool
parameter object
Результат bool
        public bool CanExecute(object parameter)
        {
            bool result = true;
            Func<object, bool> canExecuteHandler = this.canExecute;
            if (canExecuteHandler != null)
            {
                result = canExecuteHandler(parameter);
            }

            return result;
        }