public class ProcessResults extends Object:
Immutable value object describing the result of a process execution.
@param PID Operating-system process identifier (or 0u if unavailable). @param exitCode Process exit status (0 means success). @param output Standard output captured from the process. @param error Standard error captured from the process.
| Modifier and Type | Member | Description |
|---|---|---|
| public readonly | PIDPID as UInt |
Operating-system process identifier. |
| public readonly | errorerror as String |
Captured standard error. |
| public readonly | exitCodeexitCode as Int |
Process exit status. |
| public readonly | outputoutput as String |
Captured standard output. |