AuthorizationRuleCollection.IndexOf(AuthorizationRule) Metoda
Definicja
Ważne
Niektóre informacje odnoszą się do produktu w wersji wstępnej, który może zostać znacząco zmodyfikowany przed wydaniem. Firma Microsoft nie udziela żadnych gwarancji, jawnych lub domniemanych, w odniesieniu do informacji podanych w tym miejscu.
Pobiera indeks kolekcji określonego AuthorizationRule obiektu.
public:
int IndexOf(System::Web::Configuration::AuthorizationRule ^ rule);
public int IndexOf (System.Web.Configuration.AuthorizationRule rule);
member this.IndexOf : System.Web.Configuration.AuthorizationRule -> int
Public Function IndexOf (rule As AuthorizationRule) As Integer
Parametry
- rule
- AuthorizationRule
Obiekt AuthorizationRule , którego indeks jest zwracany.
Zwraca
Indeks określonego AuthorizationRule obiektu.
Przykłady
W poniższym przykładzie kodu pokazano, jak używać IndexOf metody .
// Get the rule collection index.
System.Int32 ruleIndex =
authorizationSection.Rules.IndexOf(authorizationRule);
' Get the rule collection index.
Dim ruleIndex As System.Int32 = _
authorizationSection.Rules.IndexOf(authorizationRule)