共用方式為


HttpModuleActionCollection.IndexOf(HttpModuleAction) 方法

定義

取得指定之 HttpModuleAction 模組的集合索引。

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

參數

action
HttpModuleAction

要取得集合索引的 HttpModuleAction 模組。

傳回

Int32

指定之模組的集合索引值。

範例

下列範例示範如何取得 HttpModuleAction 模組集合索引。

// 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)

備註

使用此方法之前,您必須使用適當的名稱和類型來識別 HttpModuleAction 模組。 然後,您可以使用此模組物件來取得其集合索引。

適用於