次の方法で共有


HttpHandlerActionCollection.IndexOf(HttpHandlerAction) メソッド

定義

指定した HttpHandlerAction オブジェクトのコレクション インデックスを取得します。

public:
 int IndexOf(System::Web::Configuration::HttpHandlerAction ^ action);
public int IndexOf (System.Web.Configuration.HttpHandlerAction action);
member this.IndexOf : System.Web.Configuration.HttpHandlerAction -> int
Public Function IndexOf (action As HttpHandlerAction) As Integer

パラメーター

action
HttpHandlerAction

コレクション インデックスを取得する対象の HttpHandlerAction オブジェクト。

戻り値

Int32

コレクション インデックス値。

次のコード例は、オブジェクト コレクション インデックスを取得する方法を HttpHandlerAction 示しています。


// Get the specified handler's index.
HttpHandlerAction httpHandler2 = new HttpHandlerAction(
"Calculator.custom",
"Samples.Aspnet.SystemWebConfiguration.Calculator, CalculatorHandler",
"GET", true);
int handlerIndex = httpHandlers.IndexOf(httpHandler2);

'Get the specified handler's index.
Dim httpHandler2 As System.Web.Configuration.HttpHandlerAction  = new HttpHandlerAction( _
"Calculator.custom", _
"Samples.Aspnet.SystemWebConfiguration.Calculator, CalculatorHandler", _
"GET", _
true)
Dim handlerIndex As Integer = httpHandlers.IndexOf(httpHandler2)

注釈

このメソッドを使用する前に、適切な名前と型を HttpHandlerAction 持つオブジェクトを識別する必要があります。 その後、このオブジェクトを使用してコレクション インデックスを取得できます。

適用対象