12 references to ReadDictionary
Microsoft.AspNetCore.Shared.Tests (12)
CopyOnWriteDictionaryHolderTest.cs (3)
36Assert.Same(source, holder.ReadDictionary); 61Assert.NotSame(source, holder.ReadDictionary); 88Assert.NotSame(source, holder.ReadDictionary);
src\Shared\CopyOnWriteDictionary\CopyOnWriteDictionaryHolder.cs (9)
76return ReadDictionary.Keys; 84return ReadDictionary.Values; 92return ReadDictionary.Count; 108return ReadDictionary[key]; 118return ReadDictionary.ContainsKey(key); 133return ReadDictionary.TryGetValue(key, out value); 148return ((ICollection<KeyValuePair<TKey, TValue>>)ReadDictionary).Contains(item); 153((ICollection<KeyValuePair<TKey, TValue>>)ReadDictionary).CopyTo(array, arrayIndex); 163return ReadDictionary.GetEnumerator();