AdvancedLauncher.Management.Execution.DirectLauncher.Execute C# (CSharp) Method

Execute() public method

Execute process with arguments
public Execute ( string application, string arguments ) : bool
application string Path to executable
arguments string Arguments
return bool
        public override bool Execute(string application, string arguments)
        {
            LOGGER.DebugFormat("Trying to start: [application={0}, arguments={1}", application, arguments);
            if (File.Exists(application)) {
                return StartProcess(application, arguments);
            }
            return false;
        }
DirectLauncher