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

モジュール名。


Name プロパティを使用する方法を次のコード例に示します。
' Get the modules collection. Dim httpModules _ As HttpModuleActionCollection = httpModulesSection.Modules Dim moduleFound As String = _ "moduleName not found." ' Find the module with the specified name. Dim currentModule As HttpModuleAction For Each currentModule In httpModules If currentModule.Name = "moduleName" Then moduleFound = "moduleName found." End If Next currentModule
// Get the modules collection. HttpModuleActionCollection httpModules = httpModulesSection.Modules; string moduleFound = "moduleName not found."; // Find the module with the specified name. foreach (HttpModuleAction currentModule in httpModules) { if (currentModule.Name == "moduleName") moduleFound = "moduleName 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 によってサポートされていないバージョンがあります。サポートされているバージョンについては、「システム要件」を参照してください。


Weblioに収録されているすべての辞書からHttpModuleAction.Name プロパティを検索する場合は、下記のリンクをクリックしてください。

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