3 writes to CacheLimit
System.ServiceModel.Internals (3)
System\Runtime\Collections\ObjectCache.cs (1)
310
this.settings.
CacheLimit
= 0;
System\Runtime\Collections\ObjectCacheSettings.cs (2)
21
this.
CacheLimit
= DefaultCacheLimit;
29
this.
CacheLimit
= other.CacheLimit;
3 references to CacheLimit
System.ServiceModel.Internals (3)
System\Runtime\Collections\ObjectCache.cs (2)
79
if (this.Count >= this.settings.
CacheLimit
|| this.cacheItems.ContainsKey(key))
120
if (this.Count >= this.settings.
CacheLimit
)
System\Runtime\Collections\ObjectCacheSettings.cs (1)
29
this.CacheLimit = other.
CacheLimit
;