Logo ProcessKit API Reference

StdioMode Type

How a child's stdout or stderr stream is connected. Set per-stream on `Command` via `Stdout`/`Stderr`; the default is `Piped`.

Union cases

Union case Description

Inherit

Full Usage: Inherit

Let the child share the parent's stream (its output appears on the parent's terminal / log). Cannot be captured.

Null

Full Usage: Null

Redirect the stream to the null device, discarding output without tying up a pipe.

Piped

Full Usage: Piped

Capture the stream through a pipe (the default). Required for line streaming, per-line handlers, and the output-retrieval verbs to see any output.

Instance members

Instance member Description

this.IsInherit

Full Usage: this.IsInherit

Returns: bool
Returns: bool

this.IsNull

Full Usage: this.IsNull

Returns: bool
Returns: bool

this.IsPiped

Full Usage: this.IsPiped

Returns: bool
Returns: bool

Type something to start searching.