AppHarbor.Command.Execute C# (CSharp) Method

Execute() public method

public Execute ( string arguments ) : void
arguments string
return void
        public virtual void Execute(string[] arguments)
        {
            var commandArguments = OptionSet.Parse(arguments).ToArray();
            if (_helpCommand)
            {
                throw new HelpException();
            }
            InnerExecute(commandArguments);
        }