HttpModuleAction.Type プロパティ
アセンブリ: System.Web (system.web.dll 内)

モジュール型名とアセンブリ情報を含むコンマ区切りリスト。

ASP.NET は Type によって定義されるアセンブリを検索するために、最初に、アセンブリ DLL をアプリケーションのプライベート \bin ディレクトリで探し、次にシステムのアセンブリ キャッシュで探します。

Type プロパティへのアクセス方法を次のコード例に示します。
' Get the modules collection. Dim httpModules2 _ As HttpModuleActionCollection = httpModulesSection.Modules Dim typeFound As String = _ "typeName not found." ' Find the module with the specified type. Dim currentModule1 As HttpModuleAction For Each currentModule1 In httpModules2 If currentModule1.Type = "typeName" Then typeFound = "typeName found." End If Next currentModule1
// Get the modules collection. HttpModuleActionCollection httpModules2 = httpModulesSection.Modules; string typeFound = "typeName not found."; // Find the module with the specified type. foreach (HttpModuleAction currentModule in httpModules2) { if (currentModule.Type == "typeName") typeFound = "typeName found."; }

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 によってサポートされていないバージョンがあります。サポートされているバージョンについては、「システム要件」を参照してください。


- HttpModuleAction.Type プロパティのページへのリンク