StreamPipeReaderOptions Constructors

Definition

Overloads

StreamPipeReaderOptions(MemoryPool<Byte>, Int32, Int32, Boolean)

Initializes a StreamPipeReaderOptions instance, optionally specifying a memory pool, a minimum buffer size, a minimum read size, and whether the underlying stream should be left open after the PipeReader completes.

StreamPipeReaderOptions(MemoryPool<Byte>, Int32, Int32, Boolean, Boolean)

Initializes a StreamPipeReaderOptions instance, optionally specifying a memory pool, a minimum buffer size, a minimum read size, and whether the underlying stream should be left open after the PipeReader completes.

StreamPipeReaderOptions(MemoryPool<Byte>, Int32, Int32, Boolean)

Source:
StreamPipeReaderOptions.cs
Source:
StreamPipeReaderOptions.cs

Initializes a StreamPipeReaderOptions instance, optionally specifying a memory pool, a minimum buffer size, a minimum read size, and whether the underlying stream should be left open after the PipeReader completes.

public StreamPipeReaderOptions (System.Buffers.MemoryPool<byte>? pool, int bufferSize, int minimumReadSize, bool leaveOpen);

Parameters

pool
MemoryPool<Byte>

The memory pool to use when allocating memory. The default value is null.

bufferSize
Int32

The minimum buffer size to use when renting memory from the pool. The default value is 4096.

minimumReadSize
Int32

The threshold of remaining bytes in the buffer before a new buffer is allocated. The default value is 1024.

leaveOpen
Boolean

true to leave the underlying stream open after the PipeReader completes; false to close it. The default is false.

Applies to

.NET 9 i inne wersje
Produkt Wersje
.NET 6 (package-provided), 7 (package-provided), 8 (package-provided), 9 (package-provided), 9
.NET Framework 4.7 (package-provided), 4.7.1 (package-provided), 4.7.2 (package-provided), 4.8 (package-provided)
.NET Standard 2.0 (package-provided)

StreamPipeReaderOptions(MemoryPool<Byte>, Int32, Int32, Boolean, Boolean)

Source:
StreamPipeReaderOptions.cs
Source:
StreamPipeReaderOptions.cs

Initializes a StreamPipeReaderOptions instance, optionally specifying a memory pool, a minimum buffer size, a minimum read size, and whether the underlying stream should be left open after the PipeReader completes.

public StreamPipeReaderOptions (System.Buffers.MemoryPool<byte>? pool = default, int bufferSize = -1, int minimumReadSize = -1, bool leaveOpen = false, bool useZeroByteReads = false);

Parameters

pool
MemoryPool<Byte>

The memory pool to use when allocating memory. The default value is null.

bufferSize
Int32

The minimum buffer size to use when renting memory from the pool. The default value is 4096.

minimumReadSize
Int32

The threshold of remaining bytes in the buffer before a new buffer is allocated. The default value is 1024.

leaveOpen
Boolean

true to leave the underlying stream open after the PipeReader completes; false to close it. The default is false.

useZeroByteReads
Boolean

true if reads with an empty buffer should be issued to the underlying stream before allocating memory; otherwise, false.

Applies to

.NET 9 i inne wersje
Produkt Wersje
.NET 6 (package-provided), 7 (package-provided), 8 (package-provided), 9 (package-provided), 9
.NET Framework 4.7 (package-provided), 4.7.1 (package-provided), 4.7.2 (package-provided), 4.8 (package-provided)
.NET Standard 2.0 (package-provided)