2 instantiations of MemoryCacheElement
System.Runtime.Caching (2)
System\Runtime\Caching\Configuration\MemoryCacheSettingsCollection.cs (2)
87return new MemoryCacheElement(); 92return new MemoryCacheElement(elementName);
10 references to MemoryCacheElement
System.Runtime.Caching (10)
System\Runtime\Caching\Configuration\MemoryCacheSettingsCollection.cs (9)
13[ConfigurationCollection(typeof(MemoryCacheElement), 31public MemoryCacheElement this[int index] 33get { return (MemoryCacheElement)base.BaseGet(index); } 44public new MemoryCacheElement this[string key] 48return (MemoryCacheElement)BaseGet(key); 60public int IndexOf(MemoryCacheElement cache) 65public void Add(MemoryCacheElement cache) 70public void Remove(MemoryCacheElement cache) 97return ((MemoryCacheElement)element).Name;
System\Runtime\Caching\MemoryCacheStatistics.cs (1)
127MemoryCacheElement element = null;