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