1 type derived from Http3ControlStream
Microsoft.AspNetCore.Server.Kestrel.Core (1)
Internal\Http3\Http3ControlStreamOfT.cs (1)
9internal sealed class Http3ControlStream<TContext> : Http3ControlStream, IHostContextContainer<TContext> where TContext : notnull
19 references to Http3ControlStream
Microsoft.AspNetCore.Server.Kestrel.Core (19)
Internal\Http3\Http3Connection.cs (12)
97public Http3ControlStream? OutboundControlStream { get; set; } 98public Http3ControlStream? ControlStream { get; set; } 99public Http3ControlStream? EncoderStream { get; set; } 100public Http3ControlStream? DecoderStream { get; set; } 230static void ValidateOpenControlStream(Http3ControlStream? stream, Http3Connection connection, long timestamp) 342Http3ControlStream? outboundControlStream = null; 717private async ValueTask ProcessOutboundControlStreamAsync(Http3ControlStream controlStream) 735private async ValueTask<Http3ControlStream> CreateNewUnidirectionalStreamAsync<TContext>(IHttpApplication<TContext> application) where TContext : notnull 747Http3ControlStream? stream; 769bool IHttp3StreamLifetimeHandler.OnInboundControlStream(Http3ControlStream stream) 782bool IHttp3StreamLifetimeHandler.OnInboundEncoderStream(Http3ControlStream stream) 795bool IHttp3StreamLifetimeHandler.OnInboundDecoderStream(Http3ControlStream stream)
Internal\Http3\Http3ControlStream.cs (4)
134var stream = (Http3ControlStream)state!; 330var stream = (Http3ControlStream)state!;
Internal\Http3\IHttp3StreamLifetimeHandler.cs (3)
14bool OnInboundControlStream(Http3ControlStream stream); 15bool OnInboundEncoderStream(Http3ControlStream stream); 16bool OnInboundDecoderStream(Http3ControlStream stream);