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
23 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 (17)
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;
718
private async ValueTask ProcessOutboundControlStreamAsync(
Http3ControlStream
controlStream)
736
private async ValueTask<
Http3ControlStream
> CreateNewUnidirectionalStreamAsync<TContext>(IHttpApplication<TContext> application) where TContext : notnull
748
Http3ControlStream
? stream;
770
bool IHttp3StreamLifetimeHandler.OnInboundControlStream(
Http3ControlStream
stream)
783
bool IHttp3StreamLifetimeHandler.OnInboundEncoderStream(
Http3ControlStream
stream)
796
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)