Click or drag to resize

RelayCommandT Constructor (ActionT, PredicateT)

Creates a new command.

Namespace:  Micros.PosCore.GuestProfile.MvvmTools
Assembly:  PosCore (in PosCore.dll) Version: 18.2
Syntax
C#
public RelayCommand(
	Action<T> execute,
	Predicate<T> canExecute
)

Parameters

execute
Type: SystemActionT
The execution logic.
canExecute
Type: SystemPredicateT
The execution status logic.
See Also