Skip to content

SSH.ExtendedDataMode

Andrew Lambert edited this page Nov 26, 2022 · 6 revisions

SSH.ExtendedDataMode

Enumeration

Protected Enum ExtendedDataMode
  Normal
  Ignore
  Merge

Remarks

Used in the Channel class to indicate how extended data streams should be handled. "Extended data streams" are all streams other than the first stream (StreamID=0), such as the stderr stream (StreamID=1).

In "Normal" mode (the default), each stream is kept separate and can be read from by specifying the appropriate StreamID to Channel.Read.

In "Ignore" mode any data received on an extended data stream is silently dropped.

In "Merge" mode any data received on an extended data stream is coalesced into the first stream.

See also

Clone this wiki locally