3 instantiations of HandleableCollection
Microsoft.Diagnostics.NETCore.Client (3)
ReversedServer\ReversedDiagnosticsServer.cs (3)
27private readonly HandleableCollection<IpcEndpointInfo> _endpointInfos = new(); 296HandleableCollection<Stream> newStreamCollection = new(); 326return _streamCollections.GetOrAdd(runtimeCookie, _ => new HandleableCollection<Stream>());
10 references to HandleableCollection
Microsoft.Diagnostics.NETCore.Client (10)
HandleableCollection.cs (3)
66/// Disposes the <see cref="HandleableCollection{T}"/> by clearing all items and handlers. 86tuple.Item1.TrySetException(new ObjectDisposedException(nameof(HandleableCollection<T>))); 272throw new ObjectDisposedException(nameof(HandleableCollection<T>));
ReversedServer\ReversedDiagnosticsServer.cs (7)
27private readonly HandleableCollection<IpcEndpointInfo> _endpointInfos = new(); 28private readonly ConcurrentDictionary<Guid, HandleableCollection<Stream>> _streamCollections = new(); 138foreach (HandleableCollection<Stream> streamCollection in _streamCollections.Values) 218if (_streamCollections.TryRemove(runtimeCookie, out HandleableCollection<Stream> streamCollection)) 296HandleableCollection<Stream> newStreamCollection = new(); 297HandleableCollection<Stream> streamCollection = _streamCollections.GetOrAdd(runtimeCookie, newStreamCollection); 324private HandleableCollection<Stream> GetStreams(Guid runtimeCookie)