Constructor LogDelegateCommand
LogDelegateCommand(Action<T>, Func<T, bool>)
Initializes a new instance of the LogDelegateCommand<T> class with the specified execute method and can execute method.
public LogDelegateCommand(Action<T> executeMethod, Func<T, bool> canExecuteMethod)
Parameters
LogDelegateCommand(Action<T>)
Initializes a new instance of the LogDelegateCommand<T> class with the specified execute method.
public LogDelegateCommand(Action<T> executeMethod)
Parameters
executeMethod
Action<T>The execute method.