HttpModuleAction 類別
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
設定 HttpModulesSection 模組。 此類別無法獲得繼承。
public ref class HttpModuleAction sealed : System::Configuration::ConfigurationElement
public sealed class HttpModuleAction : System.Configuration.ConfigurationElement
type HttpModuleAction = class
inherit ConfigurationElement
Public NotInheritable Class HttpModuleAction
Inherits ConfigurationElement
- 繼承
範例
這個範例示範如何針對 區段元素的add
httpModules
數個屬性以宣告方式指定值,這也可以當做 類別的成員HttpModuleAction存取。
下列組態檔範例示範如何以宣告方式 httpModules
指定 區段的值。
請參閱 如何:建立和設定 HTTP 模組 ,以瞭解如何建置和設定 HTTP 模組。
<httpModules>
<add name="TimerModule"
type="Samples.Aspnet.Configuration.RequestTimeInterval, RequestTimeInterval Version=1.0.1557.23158, Culture=neutral,
PublicKeyToken=7bfb33146a87b52e, processorArchitecture=MSIL"/>
</httpModules>
下列程式碼範例示範如何使用 HttpModuleAction 類別。
// Get the Web application configuration.
System.Configuration.Configuration configuration =
WebConfigurationManager.OpenWebConfiguration("/aspnetTest");
// Get the section.
HttpModulesSection httpModulesSection =
(HttpModulesSection) configuration.GetSection(
"system.web/httpModules");
' Get the Web application configuration.
Dim configuration As System.Configuration.Configuration = _
WebConfigurationManager.OpenWebConfiguration( _
"/aspnetTest")
' Get the section.
Dim httpModulesSection As HttpModulesSection = _
CType(configuration.GetSection( _
"system.web/httpModules"), HttpModulesSection)
備註
類別 HttpModuleAction 提供一種方式,以程式設計方式存取和修改 add
組態檔區 httpModules
段的 元素。
此HttpModuleAction類型是包含、集合和型別之HttpModuleActionCollectionHttpModulesSection群組的一部分。
建構函式
HttpModuleAction(String, String) |
使用傳遞的參數,初始化 HttpModuleAction 類別的新執行個體。 |