3 instantiations of HandleableCollection
Microsoft.Diagnostics.NETCore.Client (3)
ReversedServer\ReversedDiagnosticsServer.cs (3)
27
private readonly HandleableCollection<IpcEndpointInfo> _endpointInfos =
new
();
296
HandleableCollection<Stream> newStreamCollection =
new
();
326
return _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.
86
tuple.Item1.TrySetException(new ObjectDisposedException(nameof(
HandleableCollection
<T>)));
272
throw new ObjectDisposedException(nameof(
HandleableCollection
<T>));
ReversedServer\ReversedDiagnosticsServer.cs (7)
27
private readonly
HandleableCollection
<IpcEndpointInfo> _endpointInfos = new();
28
private readonly ConcurrentDictionary<Guid,
HandleableCollection
<Stream>> _streamCollections = new();
138
foreach (
HandleableCollection
<Stream> streamCollection in _streamCollections.Values)
218
if (_streamCollections.TryRemove(runtimeCookie, out
HandleableCollection
<Stream> streamCollection))
296
HandleableCollection
<Stream> newStreamCollection = new();
297
HandleableCollection
<Stream> streamCollection = _streamCollections.GetOrAdd(runtimeCookie, newStreamCollection);
324
private
HandleableCollection
<Stream> GetStreams(Guid runtimeCookie)