Udostępnij za pośrednictwem


AuthorizationRuleCollection.IndexOf(AuthorizationRule) Metoda

Definicja

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

Int32

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)

Dotyczy