Alexandria.Common.RelayCommand.RelayCommand C# (CSharp) Method

RelayCommand() public method

Creates a new command that can always execute.
public RelayCommand ( System.Action execute ) : System
execute System.Action The execution logic.
return System
        public RelayCommand(Action execute)
            : this(execute, null)
        {
        }

Same methods

RelayCommand::RelayCommand ( System.Action execute, Func canExecute ) : System