5 writes to
System.Configuration.ConfigurationManager (1)
System\Configuration\PropertyInformation.cs (1)
33set { _thisElement[Name] = value; }
System.Runtime.Caching (4)
System\Runtime\Caching\Configuration\MemoryCacheElement.cs (4)
81base["name"] = value; 95base["physicalMemoryLimitPercentage"] = value; 109base["cacheMemoryLimitMegabytes"] = value; 123base["pollingInterval"] = value;
6 references to
System.Configuration.ConfigurationManager (2)
System\Configuration\ConfigurationElement.cs (1)
1643((ConfigurationElement)this[key]).SetLocked();
System\Configuration\PropertyInformation.cs (1)
32get { return _thisElement[Name]; }
System.Runtime.Caching (4)
System\Runtime\Caching\Configuration\MemoryCacheElement.cs (4)
77return (string)base["name"]; 91return (int)base["physicalMemoryLimitPercentage"]; 105return (int)base["cacheMemoryLimitMegabytes"]; 119return (TimeSpan)base["pollingInterval"];