2 instantiations of Http3PendingStream
Microsoft.AspNetCore.Server.Kestrel.Core (2)
Internal\Http3\Http3Connection.cs (2)
394var pendingStream = new Http3PendingStream(context, streamIdFeature.StreamId); 427var pendingStream = new Http3PendingStream(context, streamIdFeature.StreamId);
12 references to Http3PendingStream
InMemory.FunctionalTests (2)
Http3\Http3TimeoutTests.cs (1)
229var serverInboundControlStream = Http3Api.Connection._unidentifiedStreams[outboundControlStream.StreamId];
src\Servers\Kestrel\shared\test\Http3\Http3InMemory.cs (1)
346public void OnUnidentifiedStreamReceived(Http3PendingStream stream)
Microsoft.AspNetCore.Server.Kestrel.Core (9)
Internal\Http3\Http3Connection.cs (8)
26internal readonly Dictionary<long, Http3PendingStream> _unidentifiedStreams = new(); 264foreach (var stream in _unidentifiedStreams.Values) 394var pendingStream = new Http3PendingStream(context, streamIdFeature.StreamId); 427var pendingStream = new Http3PendingStream(context, streamIdFeature.StreamId); 453_unidentifiedStreams.Remove(ex.StreamId, out var stream); 524foreach (var stream in _unidentifiedStreams.Values) 623private async Task CreateAndAddWebTransportStream(Http3PendingStream stream, long streamId, WebTransportStreamType type) 808void IHttp3StreamLifetimeHandler.OnUnidentifiedStreamReceived(Http3PendingStream stream)
Internal\Http3\IHttp3StreamLifetimeHandler.cs (1)
8void OnUnidentifiedStreamReceived(Http3PendingStream stream);
Microsoft.AspNetCore.Server.Kestrel.Microbenchmarks (1)
src\Servers\Kestrel\shared\test\Http3\Http3InMemory.cs (1)
346public void OnUnidentifiedStreamReceived(Http3PendingStream stream)