示例#1
0
 public Process Start(Commands.Command command)
 {
     return(Start(command.Parameters()));
 }
示例#2
0
        public static Process StartCommand(string serverBinPath, Commands.Command command)
        {
            AXBuild axBuild = NewServerBinPath(serverBinPath);

            return(axBuild.Start(command.Parameters()));
        }
示例#3
0
 public void Execute(Commands.Command command, int timeOutMinutes)
 {
     Execute(command.Parameters(), timeOutMinutes);
 }
示例#4
0
        public static void ExecuteCommand(string serverBinPath, Commands.Command command, int timeOutMinutes)
        {
            AXBuild axBuild = NewServerBinPath(serverBinPath);

            axBuild.Execute(command.Parameters(), timeOutMinutes);
        }