DistanceAndDirectionLibrary.Helpers.RelayCommand.CanExecute C# (CSharp) Méthode

CanExecute() public méthode

public CanExecute ( object parameter ) : bool
parameter object
Résultat bool
        public bool CanExecute(object parameter)
        {
            return _canExecute == null || _canExecute(parameter);
        }