Method InvokeCommands
InvokeCommands<TBindingType>(Command[], TBindingType)
Invokes the specified commands.
public bool? InvokeCommands<TBindingType>(Command[] commands, TBindingType binding)
Parameters
commandsCommand[]The set of commands to invoke.
bindingTBindingTypeThe binding that caused the invocation, if any. This will be passed as context with the command.
Returns
- bool?
null if no command was found; input processing should continue. false if the command was invoked and was not handled (or cancelled); input processing should continue. true if the command was invoked the command was handled (or cancelled); input processing should stop.
Type Parameters
TBindingType