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 class OutputBufferingMode
public enum OutputBufferingMode
type OutputBufferingMode = 
Public Enum OutputBufferingMode
Inheritance
OutputBufferingMode

Fields

Block 2

Command pipeline execution on server is blocked until session is reconnected.

Drop 1

Command pipeline execution continues, excess output is dropped in FIFO manner.

None 0

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).

Applies to