System.Web Namespace HttpResponse Class
Makes the validity of a cached item dependent on another item in the cache.
[ VB ]
Public Sub AddCacheItemDependency ( _
ByVal cacheKey As String _
)
[ C# ]
public void AddCacheItemDependency (
string cacheKey
);
[ C++ ]
public: void AddCacheItemDependency (
String* cacheKey
);
[ JScript ]
public function AddCacheItemDependency (
cacheKey : String
);
- cacheKey
- The key of the item that the cached response is dependent upon.
When the item corresponding to cacheKey is removed from the cache, the cached response of the current item is invalid.
HttpResponse Members