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