HttpResponseWrapper.RemoveOutputCacheItem 方法

定义

使用默认的输出缓存提供程序从输出缓存中删除缓存项。

重载

RemoveOutputCacheItem(String, String)

使用指定的输出缓存提供程序删除与指定路径关联的所有输出缓存项。

RemoveOutputCacheItem(String)

从缓存中移除与指定路径关联的所有缓存项。

RemoveOutputCacheItem(String, String)

使用指定的输出缓存提供程序删除与指定路径关联的所有输出缓存项。

public:
 override void RemoveOutputCacheItem(System::String ^ path, System::String ^ providerName);
public override void RemoveOutputCacheItem (string path, string providerName);
override this.RemoveOutputCacheItem : string * string -> unit
Public Overrides Sub RemoveOutputCacheItem (path As String, providerName As String)

参数

path
String

从缓存中删除的项的虚拟绝对路径。

providerName
String

用于删除与指定路径关联的输出缓存项的提供程序。

例外

path 上声明的默认值为 null

path 是无效路径。

注解

调用此方法可删除与网站配置文件中指定的自定义输出缓存提供程序关联的输出缓存项。 若要删除与默认输出缓存提供程序关联的输出缓存项,请调用 RemoveOutputCacheItem(String) 方法重载。

适用于

RemoveOutputCacheItem(String)

从缓存中移除与指定路径关联的所有缓存项。

public:
 override void RemoveOutputCacheItem(System::String ^ path);
public override void RemoveOutputCacheItem (string path);
override this.RemoveOutputCacheItem : string -> unit
Public Overrides Sub RemoveOutputCacheItem (path As String)

参数

path
String

要从缓存中移除的项的虚拟绝对路径。

适用于