2 types derived from HttpConnectionContext
Microsoft.AspNetCore.Server.Kestrel.Core (2)
Internal\Http2\Http2StreamContext.cs (1)
13internal sealed class Http2StreamContext : HttpConnectionContext
Internal\Http3\Http3StreamContext.cs (1)
13internal sealed class Http3StreamContext : HttpConnectionContext
1 instantiation of HttpConnectionContext
Microsoft.AspNetCore.Server.Kestrel.Core (1)
Middleware\HttpConnectionMiddleware.cs (1)
36var httpConnectionContext = new HttpConnectionContext(
10 references to HttpConnectionContext
Microsoft.AspNetCore.Server.Kestrel.Core (10)
Internal\Http\Http1Connection.cs (2)
28private readonly HttpConnectionContext _context; 50public Http1Connection(HttpConnectionContext context)
Internal\Http\Http1ConnectionOfT.cs (1)
10public Http1Connection(HttpConnectionContext context) : base(context) { }
Internal\Http\HttpProtocol.cs (2)
71private HttpConnectionContext _context = default!; 80public void Initialize(HttpConnectionContext context)
Internal\Http2\Http2Connection.cs (2)
88private readonly HttpConnectionContext _context; 134public Http2Connection(HttpConnectionContext context)
Internal\HttpConnection.cs (2)
59requestProcessor = _http1Connection = new Http1Connection<TContext>((HttpConnectionContext)_context); 67requestProcessor = new Http2Connection((HttpConnectionContext)_context);
Middleware\HttpConnectionMiddleware.cs (1)
36var httpConnectionContext = new HttpConnectionContext(