16 references to Pipe
Microsoft.AspNetCore.Http.Connections (3)
Internal\HttpConnectionContext.cs (1)
709
var input = new
Pipe
(_options.TransportPipeOptions);
src\aspnetcore\src\SignalR\common\Shared\DuplexPipe.cs (2)
20
var input = new
Pipe
(inputOptions);
21
var output = new
Pipe
(outputOptions);
Microsoft.AspNetCore.Server.Kestrel.Core (8)
Internal\Http\Http1ChunkedEncodingMessageBody.cs (1)
548
=> new
Pipe
(new PipeOptions
Internal\Http2\Http2Connection.cs (1)
169
_input = new
Pipe
(GetInputPipeOptions());
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
src\aspnetcore\src\Shared\ServerInfrastructure\DuplexPipe.cs (2)
33
var input = new
Pipe
(inputOptions);
34
var output = new
Pipe
(outputOptions);
Microsoft.AspNetCore.Server.Kestrel.Transport.Quic (4)
Internal\QuicStreamContext.cs (2)
63
_inputPipe = new
Pipe
(inputOptions);
64
_outputPipe = new
Pipe
(outputOptions);
src\aspnetcore\src\Shared\ServerInfrastructure\DuplexPipe.cs (2)
33
var input = new
Pipe
(inputOptions);
34
var output = new
Pipe
(outputOptions);
System.IO.Pipelines (1)
System\IO\Pipelines\Pipe.cs (1)
87
public Pipe() :
this
(PipeOptions.Default)