1 instantiation of ConnectionReference
Microsoft.AspNetCore.Server.Kestrel.Core (1)
Internal\Infrastructure\TransportConnectionManager.cs (1)
25var connectionReference = new ConnectionReference(id, connection, this);
8 references to ConnectionReference
Microsoft.AspNetCore.Server.Kestrel.Core (8)
Internal\Infrastructure\ConnectionManager.cs (5)
14private readonly ConcurrentDictionary<long, ConnectionReference> _connectionReferences = new ConcurrentDictionary<long, ConnectionReference>(); 46public void AddConnection(long id, ConnectionReference connectionReference) 56if (!_connectionReferences.TryRemove(id, out var reference)) 71var reference = kvp.Value;
Internal\Infrastructure\TransportConnectionManager.cs (3)
14private readonly ConcurrentDictionary<long, ConnectionReference> _connectionReferences = new ConcurrentDictionary<long, ConnectionReference>(); 25var connectionReference = new ConnectionReference(id, connection, this);