VersionrUI.Commands.DelegateCommand.CanExecute C# (CSharp) Method

CanExecute() public method

public CanExecute ( object parameter ) : bool
parameter object
return bool
        public bool CanExecute(object parameter)
        {
            if (canExecute == null)
            {
                return true;
            }

            return canExecute();
        }