caching 的 outputCacheProfiles 的 remove 元素(ASP.NET 设置架构)

更新:2007 年 11 月

从配置集合中移除具有指定名称的 OutputCacheProfile 对象。

configuration 元素(常规设置架构)
  system.web 元素(ASP.NET 设置架构)
    caching 元素(ASP.NET 设置架构)
      caching 的 outputCacheSettings 元素(ASP.NET 设置架构)
        caching 的 outputCacheSettings 的 outputCacheProfiles 元素(ASP.NET 设置架构)
          caching 的 outputCacheProfiles 的 remove 元素(ASP.NET 设置架构)

<remove name="string"/>

属性和元素

以下几节描述了属性、子元素和父元素。

属性

属性

说明

name

必需的 String 属性。

要从集合中移除的 OutputCacheProfile 元素的名称。

子元素

无。

父元素

元素

说明

configuration

公共语言运行库和 .NET Framework 应用程序所使用的每个配置文件中均需要的根元素。

system.web

指定配置文件中 ASP.NET 配置设置的根元素。包含各种配置元素,这些配置元素配置 ASP.NET Web 应用程序并控制这些应用程序的行为方式。

caching

为 Web 应用程序配置缓存设置。

outputCacheSettings

指定可以应用于 ASP.NET 应用程序中页的输出缓存配置文件设置。

outputCacheProfiles

包含可以应用于页以指定 OutputCache 指令的缓存设置组。

示例

下面的示例从 ASP.NET 应用程序中移除 OutputCacheProfile。

<outputCacheSettings>
  <outputCacheProfiles>
    <remove name="ServerOnly" />
  </outputCacheProfiles>
</outputCacheSettings>

元素信息

配置节处理程序

System.Web.Configuration.OutputCacheSettingsSection

配置成员

OutputCacheSettingsSection.OutputCacheProfiles

可配置的位置

Machine.config

根级别的 Web.config

应用程序级别的 Web.config

要求

IIS 5.0、5.1 和 6.0

.NET Framework 2.0

Visual Studio 2005

请参见

任务

演练:使用输出缓存增强网站性能

如何:使用位置设置配置特定目录

如何:锁定 ASP.NET 配置设置

概念

ASP.NET 缓存概述

ASP.NET 配置文件层次结构和继承

保证 ASP.NET 配置的安全

ASP.NET 配置方案

参考

system.web 元素(ASP.NET 设置架构)

configuration 元素(常规设置架构)

caching 元素(ASP.NET 设置架构)

caching 的 outputCacheSettings 元素(ASP.NET 设置架构)

caching 的 outputCacheSettings 的 outputCacheProfiles 元素(ASP.NET 设置架构)

caching 的 outputCacheProfiles 的 add 元素(ASP.NET 设置架构)

caching 的 outputCacheProfiles 的 clear 元素(ASP.NET 设置架构)

System.Configuration

System.Web.Configuration

其他资源

常规配置设置 (ASP.NET)

ASP.NET 配置设置

管理 ASP.NET 网站

ASP.NET 配置文件

ASP.NET 配置 API