PipeStream BlockLastReadBuffer Property SSH .NET Client Library Documentation
Gets or sets a value indicating whether to block last read method before the buffer is empty. When true, Read() will block until it can fill the passed in buffer and count. When false, Read() will not block, returning all the available buffer data.

Namespace: Renci.SshNet.Common
Assembly: Renci.SshNet (in Renci.SshNet.dll) Version: 0.1.0.0 (1.0.0.0)
Syntax

public bool BlockLastReadBuffer { get; set; }

Field Value

true if block last read method before the buffer is empty; otherwise, false.
Remarks

Setting to true will remove the possibility of ending a stream reader prematurely.
See Also