SystemWebCachingSectionGroup.OutputCache 属性

定义

获取配置中包含的 outputCache 节。

public:
 property System::Web::Configuration::OutputCacheSection ^ OutputCache { System::Web::Configuration::OutputCacheSection ^ get(); };
[System.Configuration.ConfigurationProperty("outputCache")]
public System.Web.Configuration.OutputCacheSection OutputCache { get; }
[<System.Configuration.ConfigurationProperty("outputCache")>]
member this.OutputCache : System.Web.Configuration.OutputCacheSection
Public ReadOnly Property OutputCache As OutputCacheSection

属性值

OutputCacheSection

OutputCacheSection 对象。

属性

示例

下面的代码示例演示如何从现有 Web 应用程序的配置文件中获取 OutputCacheSection 对象。


// Get the .<outputCache> section
OutputCacheSection outputCache =
    cachingSectionGroup.OutputCache;

// Display one of its properties.
msg = String.Format(
"Enable output cache: {0}\n",
outputCache.EnableOutputCache.ToString());

Console.Write(msg);
' Get the .<outputCache> section
Dim outputCache _
As OutputCacheSection = _
cachingSectionGroup.OutputCache

' Display one of its properties.
msg = String.Format( _
"Enable output cache: {0}" + _
ControlChars.Lf, _
outputCache.EnableOutputCache.ToString())

Console.Write(msg)

注解

OutputCacheSection 对象是指配置文件中的 outputCache 部分。

适用于

另请参阅