System.IO.Pipelines.Pipe
The default PipeWriter and PipeReader implementation.
namespace System.IO.Pipelines
{
public sealed class Pipe
{
public PipeReader Reader { get; }
public PipeWriter Writer { get; }
public Pipe();
public Pipe(PipeOptions options);
public void Reset();
}
}