Sdílet prostřednictvím


HttpHandlerActionCollection.IndexOf(HttpHandlerAction) Metoda

Definice

Získá index kolekce zadaného HttpHandlerAction objektu.

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

Parametry

action
HttpHandlerAction

Objekt HttpHandlerAction , pro který chcete získat index kolekce.

Návraty

Hodnota indexu kolekce.

Příklady

Následující příklad kódu ukazuje, jak získat HttpHandlerAction index kolekce objektů.


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

Poznámky

Před použitím této metody musíte identifikovat HttpHandlerAction objekt se správným názvem a typem. Tento objekt pak můžete použít k získání indexu kolekce.

Platí pro