Sdílet prostřednictvím


AuthorizationRuleCollection.IndexOf(AuthorizationRule) Metoda

Definice

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

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

Objekt AuthorizationRule , jehož index je vrácen.

Návraty

Index zadaného AuthorizationRule objektu.

Příklady

Následující příklad kódu ukazuje, jak použít metodu IndexOf .

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

Platí pro