-
-
Notifications
You must be signed in to change notification settings - Fork 4
SSH.ExtendedDataMode
Andrew Lambert edited this page Nov 26, 2022
·
6 revisions
SSH.ExtendedDataMode
Protected Enum ExtendedDataMode
Normal
Ignore
Merge
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.
- Channel.DataMode property
Wiki home | Project page | Bugs | Become a sponsor
Text and code examples are Copyright ©2018-24 Andrew Lambert, offered under the CC BY-SA 3.0 License.