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)
79
new 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.
1653
IEnumerator IEnumerable.GetEnumerator() => ((ConcurrentDictionary<TKey, TValue>)this).
GetEnumerator
();
2294
internal DictionaryEnumerator(ConcurrentDictionary<TKey, TValue> dictionary) => _enumerator = dictionary.
GetEnumerator
();