Cache\OutputCache.cs (15)
290return (CachedVary) HttpRuntime.Cache.InternalCache.Add(key, cachedVary, null);
295return (ControlCachedVary) HttpRuntime.Cache.InternalCache.Add(key, cachedVary, null);
382if (kernelCacheUrl != null && HttpRuntime.Cache.InternalCache.Get(key) == null) {
453if (HttpRuntime.Cache.InternalCache.Get(depKey) != null) {
471HttpRuntime.Cache.InternalCache.Insert(depKey, new DependencyCacheEntry(oceKey, kernelKey, providerName), new CacheInsertOptions() {
537result = HttpRuntime.Cache.InternalCache.Get(key);
572result = HttpRuntime.Cache.InternalCache.Get(key);
593HttpRuntime.Cache.InternalCache.Remove(key);
646HttpRuntime.Cache.InternalCache.Remove(key);
700HttpRuntime.Cache.InternalCache.Insert(cachedVaryKey, cachedVary, null);
725HttpRuntime.Cache.InternalCache.Insert(fragmentKey, fragment, new CacheInsertOptions() {
741Object d = HttpRuntime.Cache.InternalCache.Add(depKey, new DependencyCacheEntry(fragmentKey, null, provider.Name),
814HttpRuntime.Cache.InternalCache.Insert(cachedVaryKey, cachedVary, null);
839HttpRuntime.Cache.InternalCache.Insert(rawResponseKey, rawResponse, new CacheInsertOptions() {
862Object d = HttpRuntime.Cache.InternalCache.Add(depKey, new DependencyCacheEntry(rawResponseKey, oce.KernelCacheUrl, provider.Name),