C# Class AdvancedLauncher.Management.Execution.AbstractLauncher

Inheritance: ILauncher
Show file Open project: GoldRenard/DMOAdvancedLauncher

Public Methods

Method Description
Execute ( string application ) : bool

Execute process

Execute ( string application, string arguments ) : bool

Execute process with arguments

StartProcess ( string application, string arguments ) : bool

Execute process

Protected Methods

Method Description
IsExecutableWorking ( string path ) : bool

Check is executable already working

Method Details

Execute() public method

Execute process
public Execute ( string application ) : bool
application string Path to executable
return bool

Execute() public abstract method

Execute process with arguments
public abstract Execute ( string application, string arguments ) : bool
application string Path to executable
arguments string Arguments
return bool

IsExecutableWorking() protected static method

Check is executable already working
protected static IsExecutableWorking ( string path ) : bool
path string Path to executable
return bool

StartProcess() public static method

Execute process
public static StartProcess ( string application, string arguments ) : bool
application string Path to executable
arguments string Arguments
return bool