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