5 implementations of IHostContextContainer
Microsoft.AspNetCore.Hosting.Tests (1)
HostingApplicationTests.cs (1)
205
private class FeaturesWithContext<T> :
IHostContextContainer
<T>, IFeatureCollection
Microsoft.AspNetCore.Server.Kestrel.Core (4)
Internal\Http\Http1ConnectionOfT.cs (1)
8
internal sealed class Http1Connection<TContext> : Http1Connection,
IHostContextContainer
<TContext> where TContext : notnull
Internal\Http2\Http2StreamOfT.cs (1)
11
internal sealed class Http2Stream<TContext> : Http2Stream,
IHostContextContainer
<TContext> where TContext : notnull
Internal\Http3\Http3ControlStreamOfT.cs (1)
9
internal sealed class Http3ControlStream<TContext> : Http3ControlStream,
IHostContextContainer
<TContext> where TContext : notnull
Internal\Http3\Http3StreamOfT.cs (1)
10
internal sealed class Http3Stream<TContext> : Http3Stream,
IHostContextContainer
<TContext> where TContext : notnull
5 references to IHostContextContainer
Microsoft.AspNetCore.Hosting (1)
Internal\HostingApplication.cs (1)
46
if (contextFeatures is
IHostContextContainer
<Context> container)
Microsoft.AspNetCore.Server.Kestrel.Core (4)
Internal\Http\Http1ConnectionOfT.cs (1)
12
TContext?
IHostContextContainer
<TContext>.HostContext { get; set; }
Internal\Http2\Http2StreamOfT.cs (1)
31
TContext?
IHostContextContainer
<TContext>.HostContext { get; set; }
Internal\Http3\Http3ControlStreamOfT.cs (1)
24
TContext?
IHostContextContainer
<TContext>.HostContext { get; set; }
Internal\Http3\Http3StreamOfT.cs (1)
36
TContext?
IHostContextContainer
<TContext>.HostContext { get; set; }