11 references to PipeOptions
Microsoft.AspNetCore.Http.Connections (2)
HttpConnectionDispatcherOptions.cs (2)
140
internal PipeOptions TransportPipeOptions => _transportPipeOptions ??= new
PipeOptions
(pauseWriterThreshold: TransportMaxBufferSize, resumeWriterThreshold: TransportMaxBufferSize / 2, readerScheduler: PipeScheduler.ThreadPool, useSynchronizationContext: false);
142
internal PipeOptions AppPipeOptions => _appPipeOptions ??= new
PipeOptions
(pauseWriterThreshold: ApplicationMaxBufferSize, resumeWriterThreshold: ApplicationMaxBufferSize / 2, readerScheduler: PipeScheduler.ThreadPool, useSynchronizationContext: false);
Microsoft.AspNetCore.Server.Kestrel.Core (6)
Internal\Http\Http1ChunkedEncodingMessageBody.cs (1)
548
=> new Pipe(new
PipeOptions
Internal\Http2\Http2Connection.cs (1)
1882
private PipeOptions GetInputPipeOptions() => new
PipeOptions
(pool: _context.MemoryPool,
Internal\Http2\Http2OutputProducer.cs (1)
763
=> new Pipe(new
PipeOptions
Internal\Http2\Http2Stream.cs (1)
646
=> new Pipe(new
PipeOptions
Internal\Http3\Http3OutputProducer.cs (1)
476
=> new Pipe(new
PipeOptions
Internal\Http3\Http3Stream.cs (1)
1239
=> new Pipe(new
PipeOptions
Microsoft.AspNetCore.Server.Kestrel.Transport.Quic (2)
Internal\QuicStreamContext.cs (2)
60
var inputOptions = new
PipeOptions
(MemoryPool, PipeScheduler.ThreadPool, PipeScheduler.Inline, maxReadBufferSize, maxReadBufferSize / 2, useSynchronizationContext: false);
61
var outputOptions = new
PipeOptions
(MemoryPool, PipeScheduler.Inline, PipeScheduler.ThreadPool, maxWriteBufferSize, maxWriteBufferSize / 2, useSynchronizationContext: false);
System.IO.Pipelines (1)
System\IO\Pipelines\PipeOptions.cs (1)
16
public static PipeOptions Default { get; } = new
PipeOptions
();