HttpResponseBase.AddCacheItemDependencies Method

Definition

Makes the validity of a cached response dependent on other items in the cache.

Overloads

AddCacheItemDependencies(ArrayList)

Makes the validity of a cached response dependent on the specified items in the cache.

AddCacheItemDependencies(String[])

Makes the validity of a cached item dependent on the specified items in the cache.

AddCacheItemDependencies(ArrayList)

Makes the validity of a cached response dependent on the specified items in the cache.

public:
 virtual void AddCacheItemDependencies(System::Collections::ArrayList ^ cacheKeys);
public virtual void AddCacheItemDependencies (System.Collections.ArrayList cacheKeys);
abstract member AddCacheItemDependencies : System.Collections.ArrayList -> unit
override this.AddCacheItemDependencies : System.Collections.ArrayList -> unit
Public Overridable Sub AddCacheItemDependencies (cacheKeys As ArrayList)

Parameters

cacheKeys
ArrayList

A collection that contains the keys of the items that the cached response is dependent on.

Exceptions

Applies to

AddCacheItemDependencies(String[])

Makes the validity of a cached item dependent on the specified items in the cache.

public:
 virtual void AddCacheItemDependencies(cli::array <System::String ^> ^ cacheKeys);
public virtual void AddCacheItemDependencies (string[] cacheKeys);
abstract member AddCacheItemDependencies : string[] -> unit
override this.AddCacheItemDependencies : string[] -> unit
Public Overridable Sub AddCacheItemDependencies (cacheKeys As String())

Parameters

cacheKeys
String[]

An array that contains the keys of the items that the cached response is dependent on.

Exceptions

Applies to