Channel9Downloader.Common.RelayCommand.CanExecute C# (CSharp) 메소드

CanExecute() 개인적인 메소드

private CanExecute ( object parameter ) : bool
parameter object
리턴 bool
        public bool CanExecute(object parameter)
        {
            return _canExecute == null ? true : _canExecute(parameter);
        }