OutputCacheSettingsSection 類別
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
設定應用程式頁面的輸出快取設定。 此類別無法獲得繼承。
public ref class OutputCacheSettingsSection sealed : System::Configuration::ConfigurationSection
public sealed class OutputCacheSettingsSection : System.Configuration.ConfigurationSection
type OutputCacheSettingsSection = class
inherit ConfigurationSection
Public NotInheritable Class OutputCacheSettingsSection
Inherits ConfigurationSection
- 繼承
範例
下列程式代碼範例示範如何從現有 Web 應用程式的組態檔取得 OutputCacheSettingsSection 物件。
// Get the Web application configuration.
System.Configuration.Configuration webConfig =
WebConfigurationManager.OpenWebConfiguration("/aspnetTest");
// Get the section.
string configPath =
"system.web/caching/outputCacheSettings";
System.Web.Configuration.OutputCacheSettingsSection outputCacheSettings =
(System.Web.Configuration.OutputCacheSettingsSection)webConfig.GetSection(
configPath);
' Get the Web application configuration.
Dim webConfig _
As System.Configuration.Configuration = _
WebConfigurationManager.OpenWebConfiguration( _
"/aspnetTest")
' Get the section.
Dim configPath As String = _
"system.web/caching/outputCacheSettings"
Dim outputCacheSettings _
As System.Web.Configuration.OutputCacheSettingsSection = _
CType(webConfig.GetSection(configPath), _
System.Web.Configuration.OutputCacheSettingsSection)
備註
類別 OutputCacheSettingsSection 可讓您以程式設計方式存取和修改 outputCacheSettings
組態檔中 區段的 caching
元素。 輸出快取設定會定義相依性, (儲存在快取中的專案與檔案、快取索引鍵或 CacheDependency 對象之間的關聯性) ,例如, 由 @ OutputCache 指示詞或 由 OutputCacheProfile使用。
注意
OutputCacheSettingsSection可以根據區段屬性AllowDefinition所定義的限制,將資訊寫入組態檔的相關區段中,其值為 MachineToApplication。 任何嘗試在階層中不允許的層級寫入組態檔,都會導致剖析器所產生的錯誤訊息。 不過,您可以使用這個類別來讀取階層中任何層級的組態資訊。
建構函式
OutputCacheSettingsSection() |
初始化 OutputCacheSettingsSection 類別的新執行個體。 |