HttpModuleActionCollection.IndexOf(HttpModuleAction) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets the collection index of the specified HttpModuleAction module.
public:
int IndexOf(System::Web::Configuration::HttpModuleAction ^ action);
public int IndexOf (System.Web.Configuration.HttpModuleAction action);
member this.IndexOf : System.Web.Configuration.HttpModuleAction -> int
Public Function IndexOf (action As HttpModuleAction) As Integer
Parameters
- action
- HttpModuleAction
The HttpModuleAction module for which to get the collection index.
Returns
The collection index value for the specified module.
Examples
The following example shows how to obtain an HttpModuleAction module collection index.
// Set the module object.
HttpModuleAction ModuleAction1 =
new HttpModuleAction("MyModule1Name",
"MyModule1Type");
// Get the module collection index.
int moduleIndex = modulesCollection.IndexOf(ModuleAction1);
' Set the module object.
Dim ModuleAction1 _
As New HttpModuleAction( _
"MyModule1Name", "MyModule1Type")
' Get the module collection index.
Dim moduleIndex As Integer = _
modulesCollection.IndexOf(ModuleAction1)
Remarks
Before using this method, you must identify an HttpModuleAction module with the proper name and type. You can then use this module object to get its collection index.
Applies to
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
.NET