OutputBufferingMode
Enum
Definition
WSManTransportManager supports disconnected PowerShell sessions. When a remote PS session server is in disconnected state, output from the running command pipeline is cached on the server. This enum determines what the server does when the cache is full.
public enum OutputBufferingMode
- Inheritance
-
OutputBufferingMode
Fields
| Block | Command pipeline execution on server is blocked until session is reconnected. |
| Drop | Command pipeline execution continues, excess output is dropped in FIFO manner. |
| None | No output buffering mode specified. Output buffering mode on server will default to Block if a new session is created, or will retain its current mode for non-creation scenarios (e.g., disconnect/connect operations). |