Click or drag to resize
weroSoft AG, Software
GetLatestCommand Constructor
The documentation is integral part of the weroSoft product documentation. This part is intended to be used by developers only.
Initializes a new instance of the type GetLatestCommand.

Namespace:  WeroSoft.Development.Controls
Assembly:  WeroSoft.Client.Desktop.Library (in WeroSoft.Client.Desktop.Library.dll) Version: 3.0 Pre-Release
Syntax
C#
public GetLatestCommand(
	Action<Object> delegateExecute = null,
	Predicate<Object> delegateCanExecute = null
)

Parameters

delegateExecute (Optional)
Type: SystemActionObject
The delegate method used for executing the command.
delegateCanExecute (Optional)
Type: SystemPredicateObject
The delegate method used for executing the check method whether the command can be executed.
Remarks
Note that if this method is called by using null values or default values, the command can never be executed because internally an appropriate delegation to a CanExecute method is done, which always returns false.
See Also