HttpModuleActionCollection クラス
アセンブリ: System.Web (system.web.dll 内)



HttpModuleActionCollection クラスを使用する方法を次のコード例に示します。また、ASP.NET でカスタム モジュールを使用できるようにする構成ファイルの抜粋も示します。
HTTP モジュールの構築と構成の方法を示す完全な例については、「方法 : HTTP モジュールを作成および構成する」を参照してください。
<httpModules> <add name="TimerModule" type="Samples.AspNet.RequestTimeInterval, RequestTimeInterval Version=1.0.1557.23158, Culture=neutral, PublicKeyToken=7bfb33146a87b52e, processorArchitecture=MSIL"/> </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) ' Get the collection. Dim modulesCollection _ As HttpModuleActionCollection = httpModulesSection.Modules
// 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 collection. HttpModuleActionCollection modulesCollection = httpModulesSection.Modules;

System.Configuration.ConfigurationElement
System.Configuration.ConfigurationElementCollection
System.Web.Configuration.HttpModuleActionCollection


Windows 98, Windows 2000 SP4, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
開発プラットフォームの中には、.NET Framework によってサポートされていないバージョンがあります。サポートされているバージョンについては、「システム要件」を参照してください。


Weblioに収録されているすべての辞書からHttpModuleActionCollection クラスを検索する場合は、下記のリンクをクリックしてください。

- HttpModuleActionCollection クラスのページへのリンク