System.Waf.Applications.AsyncDelegateCommand.OnCanExecuteChanged C# (CSharp) Method

OnCanExecuteChanged() protected method

Raises the CanExecuteChanged event.
protected OnCanExecuteChanged ( EventArgs e ) : void
e EventArgs The instance containing the event data.
return void
        protected virtual void OnCanExecuteChanged(EventArgs e)
        {
            CanExecuteChanged?.Invoke(this, e);
        }
    }