PeerCastStation.WPF.Commons.Command.Command C# (CSharp) Method

Command() public method

public Command ( System.Action execute ) : System
execute System.Action
return System
    public Command(Action execute)
      : this(execute, () => true)
    {
    }
    public Command(Action execute, Func<bool> canExecute)

Same methods

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