 | ProcessController Constructor |
[This is preliminary documentation and is subject to change.]
Namespace:
TrafficSimulation.Simulation.Applications
Assembly:
TrafficSimulation.Simulation.Applications (in TrafficSimulation.Simulation.Applications.exe) Version: 1.0.0.2 (1.0.0.2)
Syntaxprotected ProcessController(
bool forceKillOnExit,
string processName,
string relativePathToProcess,
string startParameter,
bool createWindow = false
)
Protected Sub New (
forceKillOnExit As Boolean,
processName As String,
relativePathToProcess As String,
startParameter As String,
Optional createWindow As Boolean = false
)
protected:
ProcessController(
bool forceKillOnExit,
String^ processName,
String^ relativePathToProcess,
String^ startParameter,
bool createWindow = false
)
new :
forceKillOnExit : bool *
processName : string *
relativePathToProcess : string *
startParameter : string *
?createWindow : bool
(* Defaults:
let _createWindow = defaultArg createWindow false
*)
-> ProcessControllerParameters
- forceKillOnExit
- Type: SystemBoolean
if set to true [force kill on exit]. - processName
- Type: SystemString
Name of the process. - relativePathToProcess
- Type: SystemString
The relative path to exe. - startParameter
- Type: SystemString
The start parameter. - createWindow (Optional)
- Type: SystemBoolean
if set to true [create window].
See Also