Member Junction
    Preparing search index...

    Result of a child process execution.

    ProcessRunner.Run — returns this after the process exits or times out.

    interface ProcessResult {
        ExitCode: number;
        Stderr: string;
        Stdout: string;
        TimedOut: boolean;
    }
    Index

    Properties

    ExitCode: number

    Process exit code (0 = success). Set to 1 on spawn errors.

    Stderr: string

    Accumulated stderr output from the process.

    Stdout: string

    Accumulated stdout output from the process.

    TimedOut: boolean

    Whether the process was killed due to exceeding ProcessOptions.TimeoutMs.