41 references to OutputCache
System.Web (41)
Cache\OutputCache.cs (12)
118s_entryRemovedCallback = new CacheItemRemovedCallback(OutputCache.EntryRemovedCallback); 119s_dependencyRemovedCallback = new CacheItemRemovedCallback(OutputCache.DependencyRemovedCallback); 120s_dependencyRemovedCallbackForFragment = new CacheItemRemovedCallback(OutputCache.DependencyRemovedCallbackForFragment); 170if (name == OutputCache.ASPNET_INTERNAL_PROVIDER_NAME) { 319WebBaseEvent.RaiseRuntimeError(e, typeof(OutputCache)); 342OutputCache.RemoveFromProvider(dce.OutputCacheEntryKey, dce.ProviderName); 359OutputCache.RemoveFragment(dce.OutputCacheEntryKey, dce.ProviderName); 401return (s_defaultProvider != null) ? s_defaultProvider.Name : OutputCache.ASPNET_INTERNAL_PROVIDER_NAME; 526OutputCache.RemoveFromProvider(key, provider.Name); 562OutputCache.RemoveFragment(key, provider.Name); 690cachedVaryInCache = OutputCache.UtcAdd(cachedVaryKey, cachedVary); 805cachedVaryInCache = OutputCache.UtcAdd(cachedVaryKey, cachedVary);
Compilation\BaseTemplateCodeDomTreeGenerator.cs (1)
659if (providerName == OutputCache.ASPNET_INTERNAL_PROVIDER_NAME) {
Configuration\OutputCacheSection.cs (3)
64OutputCache.ASPNET_INTERNAL_PROVIDER_NAME, //defaultValue 178[ConfigurationProperty("defaultProvider", DefaultValue = OutputCache.ASPNET_INTERNAL_PROVIDER_NAME)] 212if (defaultProviderName == OutputCache.ASPNET_INTERNAL_PROVIDER_NAME) {
HttpApplication.cs (1)
1438return System.Web.Caching.OutputCache.DefaultProviderName;
HttpResponse.cs (4)
1023OutputCache.Remove(key, (HttpContext)null); 1026OutputCache.RemoveFromProvider(key, providerName); 1033OutputCache.Remove(key, (HttpContext)null); 1036OutputCache.RemoveFromProvider(key, providerName);
OutputCacheModule.cs (8)
525if (!OutputCache.InUse) { 593item = OutputCache.Get(key); 628item = OutputCache.Get(key); 649item = OutputCache.Get(key + contentEncodings[index]); 669item = OutputCache.Get(key); 688OutputCache.Remove(key, context); 836OutputCache.Remove(key, context); 1264OutputCache.InsertResponse(_key, cachedVary,
UI\ControlCachePolicy.cs (3)
159return OutputCache.ASPNET_INTERNAL_PROVIDER_NAME; 167if (value == OutputCache.ASPNET_INTERNAL_PROVIDER_NAME) { 170OutputCache.ThrowIfProviderNotFound(value);
UI\PartialCachingAttribute.cs (2)
125return OutputCache.ASPNET_INTERNAL_PROVIDER_NAME; 132if (value == OutputCache.ASPNET_INTERNAL_PROVIDER_NAME) {
UI\PartialCachingControl.cs (5)
94object tmpCacheEntry = OutputCache.GetFragment(_cacheKey, _provider); 102cacheEntry = (PartialCachingCacheEntry) OutputCache.GetFragment(varyCachedKey, _provider); 106OutputCache.RemoveFragment(varyCachedKey, _provider); 431OutputCache.InsertFragment(_cacheKey, cachedVary, 779if (providerName == OutputCache.ASPNET_INTERNAL_PROVIDER_NAME) {
UI\UserControlParser.cs (2)
80if (_provider == OutputCache.ASPNET_INTERNAL_PROVIDER_NAME) { 83OutputCache.ThrowIfProviderNotFound(_provider);