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
21 references to Http3ControlStream
InMemory.FunctionalTests (3)
src\Servers\Kestrel\shared\test\Http3\Http3InMemory.cs (3)
287
public bool OnInboundControlStream(Server.Kestrel.Core.Internal.Http3.
Http3ControlStream
stream)
301
public bool OnInboundDecoderStream(Server.Kestrel.Core.Internal.Http3.
Http3ControlStream
stream)
313
public bool OnInboundEncoderStream(Server.Kestrel.Core.Internal.Http3.
Http3ControlStream
stream)
Microsoft.AspNetCore.Server.Kestrel.Core (15)
Internal\Http3\Http3Connection.cs (10)
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)
732
private async ValueTask ProcessOutboundControlStreamAsync(
Http3ControlStream
controlStream)
764
if (OutboundControlStream is
Http3ControlStream
stream)
780
bool IHttp3StreamLifetimeHandler.OnInboundControlStream(
Http3ControlStream
stream)
793
bool IHttp3StreamLifetimeHandler.OnInboundEncoderStream(
Http3ControlStream
stream)
806
bool IHttp3StreamLifetimeHandler.OnInboundDecoderStream(
Http3ControlStream
stream)
Internal\Http3\Http3ControlStream.cs (2)
71
var
stream = (
Http3ControlStream
)state!;
Internal\Http3\IHttp3StreamLifetimeHandler.cs (3)
14
bool OnInboundControlStream(
Http3ControlStream
stream);
15
bool OnInboundEncoderStream(
Http3ControlStream
stream);
16
bool OnInboundDecoderStream(
Http3ControlStream
stream);
Microsoft.AspNetCore.Server.Kestrel.Microbenchmarks (3)
src\Servers\Kestrel\shared\test\Http3\Http3InMemory.cs (3)
287
public bool OnInboundControlStream(Server.Kestrel.Core.Internal.Http3.
Http3ControlStream
stream)
301
public bool OnInboundDecoderStream(Server.Kestrel.Core.Internal.Http3.
Http3ControlStream
stream)
313
public bool OnInboundEncoderStream(Server.Kestrel.Core.Internal.Http3.
Http3ControlStream
stream)