3 writes to _objectCache
System.Web (3)
Cache\cache.cs (3)
254
_objectCache
= (CacheStoreProvider)ProvidersHelper.InstantiateProvider(cacheProviderSettings, typeof(CacheStoreProvider));
259
_objectCache
= new AspNetCache((AspNetCache)_internalCache, isPublic: true);
262
_objectCache
= new AspNetCache(isPublic: true);
7 references to _objectCache
System.Web (7)
Cache\cache.cs (7)
228
if (
_objectCache
is AspNetCache) {
229
_internalCache = new AspNetCache((AspNetCache)
_objectCache
, isPublic: false);
246
if (
_objectCache
== null && createIfDoesNotExist) {
248
if (
_objectCache
== null) {
255
_objectCache
.Initialize(providerName, cacheProviderSettings);
264
_objectCache
.Initialize(null, new NameValueCollection());
270
return
_objectCache
;