Поделиться через


AuthorizationRuleCollection.IndexOf(AuthorizationRule) Метод

Определение

Получает индекс коллекции указанного объекта AuthorizationRule.

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

Параметры

rule
AuthorizationRule

Объект AuthorizationRule, индекс которого возвращается.

Возвращаемое значение

Индекс указанного объекта AuthorizationRule.

Примеры

В следующем примере кода показано применение метода 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)

Применяется к