Delegate ExecuteCommandSourceDelegate
Represents a method that executes a command using the specified command source.
public delegate void ExecuteCommandSourceDelegate(ICommandSource commandSource)
Parameters
commandSourceICommandSourceThe source of the command to be executed. This parameter cannot be null.
Remarks
This delegate is typically used to define a callback or handler for executing commands provided by an ICommandSource. The implementation of the delegate determines how the command is processed.