1 write to _pendingConnections
Microsoft.AspNetCore.Server.Kestrel.Transport.Quic (1)
Internal\QuicConnectionListener.cs (1)
53_pendingConnections = new ConditionalWeakTable<QuicConnection, QuicConnectionContext>();
7 references to _pendingConnections
Microsoft.AspNetCore.Server.Kestrel.Transport.Quic (3)
Internal\QuicConnectionListener.cs (3)
68_pendingConnections.Add(connection, currentAcceptingConnection); 159if (!_pendingConnections.TryGetValue(quicConnection, out var connectionContext)) 165_pendingConnections.Remove(quicConnection);
Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.Tests (4)
QuicConnectionListenerTests.cs (4)
359Assert.Single(connectionListener._pendingConnections); 369Assert.Empty(connectionListener._pendingConnections); 400Assert.Single(connectionListener._pendingConnections); 414if (connectionListener._pendingConnections.Count() == 0)