Freigeben über


AuthorizationRuleCollection.IndexOf(AuthorizationRule) Methode

Definition

Ruft den Auflistungsindex des angegebenen AuthorizationRule-Objekts ab.

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

Parameter

rule
AuthorizationRule

Das AuthorizationRule-Objekt, dessen Index zurückgegeben wird.

Gibt zurück

Der Index des angegebenen AuthorizationRule-Objekts zurück.

Beispiele

Im folgenden Codebeispiel wird die Verwendung der IndexOf-Methode veranschaulicht.

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

Gilt für: