AzureDNSManager.Command.Command C# (CSharp) Method

Command() public method

public Command ( System.Action action, bool canExecute = true ) : System
action System.Action
canExecute bool
return System
        public Command(Action action, bool canExecute = true)
        {
            this.action = action;
            this._canExecute = canExecute;
        }

Same methods

Command::Command ( Action action, bool canExecute = true ) : System