System.IO.Pipelines.StreamPipeWriterOptions
Represents a set of options for controlling the creation of the PipeWriter.
namespace System.IO.Pipelines
{
public class StreamPipeWriterOptions
{
public int MinimumBufferSize { get; }
public MemoryPool<byte> Pool { get; }
public bool LeaveOpen { get; }
public StreamPipeWriterOptions(MemoryPool<byte> pool = null, int minimumBufferSize = -1, bool leaveOpen = false);
}
}