Defines whether a function waits for the call to finish before executing a command.
Public Enum ExecutionMode
Name | Description |
---|---|
WaitUntilFinished | Execute should return only after the program is finished. |
ContinueRunning | Start the executable and immediately return. ExecutionResult.ExitCode will always be 0, and no output will be captured in ExecutionResult.RawOutput. |