HttpHandlerActionCollection.IndexOf(HttpHandlerAction) メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
指定した 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 オブジェクト。
戻り値
コレクション インデックス値。
例
次のコード例は、オブジェクト コレクション インデックスを取得する方法を 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 持つオブジェクトを識別する必要があります。 その後、このオブジェクトを使用してコレクション インデックスを取得できます。