'Declaration Public Function New( _ ByVal executeAction As Func(Of Object,Task), _ ByVal canExecute As Func(Of Object,Boolean) _ )
public AsyncCommand( Func<object,Task> executeAction, Func<object,bool> canExecute )
Parameters
- executeAction
- The command will be executed.
- canExecute
- Determines whether the command can be executed or not.