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
|
Full Usage:
Inherit
|
Let the child share the parent's stream (its output appears on the parent's terminal / log). Cannot be captured. |
Full Usage:
Null
|
Redirect the stream to the null device, discarding output without tying up a pipe. |
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
|
Full Usage:
this.IsInherit
Returns: bool
|
|
Full Usage:
this.IsNull
Returns: bool
|
|
Full Usage:
this.IsPiped
Returns: bool
|
|
ProcessKit API Reference