HttpResponse.RemoveOutputCacheItem Method

Definition

Removes cached items from the output cache by using the default output-cache provider.

Overloads

RemoveOutputCacheItem(String, String)

Uses the specified output-cache provider to remove all output-cache items that are associated with the specified path.

RemoveOutputCacheItem(String)

Removes from the cache all cached items that are associated with the default output-cache provider. This method is static.

RemoveOutputCacheItem(String, String)

Uses the specified output-cache provider to remove all output-cache items that are associated with the specified path.

public:
 static void RemoveOutputCacheItem(System::String ^ path, System::String ^ providerName);
public static void RemoveOutputCacheItem (string path, string providerName);
static member RemoveOutputCacheItem : string * string -> unit
Public Shared Sub RemoveOutputCacheItem (path As String, providerName As String)

Parameters

path
String

The virtual absolute path of the items that are removed from the cache.

providerName
String

The provider that is used to remove the output-cache artifacts that are associated with the specified path.

Exceptions

path is null.

path is an invalid path.

Remarks

Call this method to remove output-cache items that are associated with the custom output-cache providers that are specified in the Web site configuration file. To remove output-cache items that are associated with the default output-cache provider, call the RemoveOutputCacheItem(String) method overload.

Applies to

RemoveOutputCacheItem(String)

Removes from the cache all cached items that are associated with the default output-cache provider. This method is static.

public:
 static void RemoveOutputCacheItem(System::String ^ path);
public static void RemoveOutputCacheItem (string path);
static member RemoveOutputCacheItem : string -> unit
Public Shared Sub RemoveOutputCacheItem (path As String)

Parameters

path
String

The virtual absolute path to the items that are removed from the cache.

Exceptions

path is null.

path is not an absolute virtual path.

Remarks

Call this method to remove output-cache items that are associated with the default output-cache provider. Call the RemoveOutputCacheItem method to remove output-cache items that are associated with custom output-cache providers that are specified in the Web site configuration file.

Applies to