次の方法で共有


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 モジュール。

戻り値

指定したモジュールのコレクション インデックス値。

次の例は、モジュール コレクションインデックスを取得する方法を 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 持つモジュールを識別する必要があります。 その後、このモジュール オブジェクトを使用してコレクション インデックスを取得できます。

適用対象