Alexandria.Common.RelayCommand.RaiseCanExecuteChanged C# (CSharp) Method

RaiseCanExecuteChanged() public method

Method used to raise the CanExecuteChanged event to indicate that the return value of the CanExecute method has changed.
public RaiseCanExecuteChanged ( ) : void
return void
        public void RaiseCanExecuteChanged()
        {
            var handler = CanExecuteChanged;
            if (handler != null)
            {
                handler(this, EventArgs.Empty);
            }
        }