Table of Contents

Constructor LogDelegateCommand

Namespace
Innova.Prism.Library.Commands
Assembly
Innova.Prism.Library.dll

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

executeMethod Action<T>

The execute method.

canExecuteMethod Func<T, bool>

The can execute method.

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.