Inheritance: System.Web.Caching.CacheDependency
Esempio n. 1
0
 protected virtual void AddCacheDependency(HttpResponse response, ContentCacheDependency dependency)
 {
     if (dependency != null)
     {
         response.AddCacheDependency(dependency);
     }
     response.Cache.AddValidationCallback(ValidateCacheRequest, null);
 }
Esempio n. 2
0
		protected virtual void AddCacheDependency(HttpResponse response, ContentCacheDependency dependency)
		{
			if (dependency != null)
				response.AddCacheDependency(dependency);
			response.Cache.AddValidationCallback(ValidateCacheRequest, null);
		}