Summary
This method will be called after the command has terminated (either timed out or completed by itself.)
Syntax
public void Executed(string command, string arguments, int exitCode, string output, string errorOutput)
Parameters
Name |
Type |
Description |
command |
string |
The command that was executed.
|
arguments |
string |
The arguments to the command.
|
exitCode |
int |
The exit code from the process after it finished.
|
output |
string |
The standard output text from the process.
|
errorOutput |
string |
The error output text from the process.
|
Return Value