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

RelayCommand() public method

Initializes a new instance of the RelayCommand class that can always execute.
public RelayCommand ( Action execute ) : System
execute Action The execution logic.
return System
        public RelayCommand(Action<object> execute)
            : this(execute, null)
        {
        }

Same methods

RelayCommand::RelayCommand ( Action execute, Predicate canExecute ) : System