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