Implemented interface member:
method
GetEnumerator
System.Collections.Generic.IEnumerable<T>.GetEnumerator()
6 references to GetEnumerator
Microsoft.AspNetCore.SignalR.Core (1)
HubConnectionStore.cs (1)
79_enumerator = hubConnectionList._connections.GetEnumerator();
System.ComponentModel.TypeConverter (1)
System\ComponentModel\CollectibleKeyConcurrentHashtable.cs (1)
79new Enumerator(_defaultTable.GetEnumerator(), ((IEnumerable<KeyValuePair<TKey, object?>>)_collectibleTable).GetEnumerator());
System.Private.CoreLib (4)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Collections\Concurrent\ConcurrentDictionary.cs (4)
857/// made to the dictionary after <see cref="GetEnumerator"/> was called. 1651/// made to the dictionary after <see cref="GetEnumerator"/> was called. 1653IEnumerator IEnumerable.GetEnumerator() => ((ConcurrentDictionary<TKey, TValue>)this).GetEnumerator(); 2294internal DictionaryEnumerator(ConcurrentDictionary<TKey, TValue> dictionary) => _enumerator = dictionary.GetEnumerator();