Renci.SshNet.Common.PipeStream
PipeStream is a thread-safe read/write data stream for use between two threads in a
single-producer/single-consumer type problem.
namespace Renci.SshNet.Common
{
public class PipeStream : Stream
{
public long MaxBufferLength { get; set; }
public bool BlockLastReadBuffer { get; set; }
public PipeStream();
}
}