<PackageReference Include="System.IO.Pipelines" Version="11.0.0-preview.5.26302.115" />

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); } }