1 type derived from Http1Connection
Microsoft.AspNetCore.Server.Kestrel.Core (1)
Internal\Http\Http1ConnectionOfT.cs (1)
8internal sealed class Http1Connection<TContext> : Http1Connection, IHostContextContainer<TContext> where TContext : notnull
13 references to Http1Connection
Microsoft.AspNetCore.Server.Kestrel.Core (13)
Internal\Http\Http1ChunkedEncodingMessageBody.cs (2)
30public Http1ChunkedEncodingMessageBody(Http1Connection context, bool keepAlive) 516private static Pipe CreateRequestBodyPipe(Http1Connection context)
Internal\Http\Http1ContentLengthMessageBody.cs (1)
24public Http1ContentLengthMessageBody(Http1Connection context, long contentLength, bool keepAlive)
Internal\Http\Http1MessageBody.cs (3)
18protected readonly Http1Connection _context; 21protected Http1MessageBody(Http1Connection context, bool keepAlive) : base(context) 127Http1Connection context)
Internal\Http\Http1ParsingHandler.cs (3)
8public readonly Http1Connection Connection; 11public Http1ParsingHandler(Http1Connection connection) 17public Http1ParsingHandler(Http1Connection connection, bool trailers)
Internal\Http\Http1UpgradeMessageBody.cs (1)
17public Http1UpgradeMessageBody(Http1Connection context, bool keepAlive)
Internal\Http\HttpProtocol.cs (1)
1418DisableKeepAlive(Http1Connection.GetConnectionEndReason(ex));
Internal\HttpConnection.cs (2)
35private Http1Connection? _http1Connection; 149_http1Connection = requestProcessor as Http1Connection;