Implemented interface member:
method
GetEnumerator
System.Collections.Generic.IEnumerable<T>.GetEnumerator()
5 references to GetEnumerator
Microsoft.AspNetCore.SignalR.Core (1)
HubConnectionStore.cs (1)
79_enumerator = hubConnectionList._connections.GetEnumerator();
System.Collections.Concurrent (4)
System\Collections\Concurrent\ConcurrentDictionary.cs (4)
857/// made to the dictionary after <see cref="GetEnumerator"/> was called. 1676/// made to the dictionary after <see cref="GetEnumerator"/> was called. 1678IEnumerator IEnumerable.GetEnumerator() => ((ConcurrentDictionary<TKey, TValue>)this).GetEnumerator(); 2324internal DictionaryEnumerator(ConcurrentDictionary<TKey, TValue> dictionary) => _enumerator = dictionary.GetEnumerator();