3 writes to _cachetime
System.Web (3)
Configuration\HttpCapabilitiesEvaluator.cs (3)
70
_cachetime
= value;
126
_cachetime
= parent._cachetime;
144
_cachetime
= TimeSpan.FromSeconds(60); // one minute default expiry
6 references to _cachetime
System.Web (6)
Configuration\HttpCapabilitiesEvaluator.cs (6)
67
return
_cachetime
;
126
_cachetime = parent.
_cachetime
;
244
cacheInternal.Insert(hashKey, result, new CacheInsertOptions() { SlidingExpiration =
_cachetime
});
301
cacheInternal.Insert(optimisticCacheKey, result, new CacheInsertOptions() { SlidingExpiration =
_cachetime
});
366
cacheInternal.Insert(fullCacheKey, result, new CacheInsertOptions() { SlidingExpiration =
_cachetime
});
368
cacheInternal.Insert(optimisticCacheKey, _disableOptimisticCachingSingleton, new CacheInsertOptions() { SlidingExpiration =
_cachetime
});