1 instantiation of Http3StreamContext
Microsoft.AspNetCore.Server.Kestrel.Core (1)
Internal\Http3\Http3Connection.cs (1)
661var httpConnectionContext = new Http3StreamContext(
18 references to Http3StreamContext
Microsoft.AspNetCore.Server.Kestrel.Core (18)
Internal\Http3\Http3Connection.cs (5)
390var context = CreateHttpStreamContext(streamContext); 426var context = CreateHttpStreamContext(streamContext); 659internal Http3StreamContext CreateHttpStreamContext(ConnectionContext streamContext) 661var httpConnectionContext = new Http3StreamContext( 740var httpConnectionContext = CreateHttpStreamContext(streamContext);
Internal\Http3\Http3ControlStream.cs (2)
23private readonly Http3StreamContext _context; 42public Http3ControlStream(Http3StreamContext context, long? headerType)
Internal\Http3\Http3ControlStreamOfT.cs (1)
13public Http3ControlStream(IHttpApplication<TContext> application, Http3StreamContext context, long? headerType) : base(context, headerType)
Internal\Http3\Http3PendingStream.cs (3)
14internal readonly Http3StreamContext Context; 18public Http3PendingStream(Http3StreamContext context, long id) 40public async ValueTask<long> ReadNextStreamHeaderAsync(Http3StreamContext context, long streamId, Http3StreamType? advanceOn)
Internal\Http3\Http3Stream.cs (2)
45private Http3StreamContext _context = default!; 83public void Initialize(Http3StreamContext context)
Internal\Http3\Http3StreamOfT.cs (1)
14public Http3Stream(IHttpApplication<TContext> application, Http3StreamContext context)
Internal\WebTransport\WebTransportSession.cs (1)
132var streamContext = _connection.CreateHttpStreamContext(connectionContext);
Internal\WebTransport\WebTransportStream.cs (3)
46internal WebTransportStream(Http3StreamContext context, WebTransportStreamType type) 66var localContext = (Http3StreamContext)state!;