Instantiates a ProcessResult with data about a Process' execution.
public ProcessResult(string executableFilePath, int exitCode, int processId, DateTime startTime, DateTime exitTime, bool canceled, PosixSignal? signal)
The file path of the file that was executed.
The process' exit code.
The start time of the process.
The exit time of the process.
A value indicating whether the library terminated the process via its cancellation machinery rather than the process exiting on its own.
The POSIX signal that terminated the process, or null when not applicable.