Skip to main content

IDelegateCommand Methods

An interface that specifies a command delegate.
Name Description
CanExecute(Object) Defines the method that determines whether the command can execute in its current state. Inherited from ICommand.
Execute(Object) Defines the method to be called when the command is invoked. Inherited from ICommand.
RaiseCanExecuteChanged() Raises the CanExecuteChanged event. You can use this method to notify a visual element about a command’s CanExecute(T) state changes.
See Also