AuthorizationRuleCollection.Add(AuthorizationRule) Метод

Определение

Добавляет объект AuthorizationRule в коллекцию.

public:
 void Add(System::Web::Configuration::AuthorizationRule ^ rule);
public void Add (System.Web.Configuration.AuthorizationRule rule);
member this.Add : System.Web.Configuration.AuthorizationRule -> unit
Public Sub Add (rule As AuthorizationRule)

Параметры

rule
AuthorizationRule

Объект AuthorizationRule для добавления в коллекцию.

Исключения

Объект AuthorizationRule уже существует в коллекции или коллекция доступна только для чтения.

Примеры

В следующем примере кода показано применение метода Add.

 // Using the AuthorizationRuleCollection Add method.

 // Set the action property.
 authorizationRule.Action = 
    AuthorizationRuleAction.Allow;
 // Define the new rule to add to the collection.
 authorizationRule.Users.Add("userName");
 authorizationRule.Roles.Add("admin");
 authorizationRule.Verbs.Add("POST");

 // Add the new rule to the collection.
 authorizationSection.Rules.Add(authorizationRule);
' Using the AuthorizationRuleCollection Add method.
' Set the action property.
  authorizationRule.Action = _
  AuthorizationRuleAction.Allow
' Define the new rule to add to the collection.
authorizationRule.Users.Add("userName")
authorizationRule.Roles.Add("admin")
authorizationRule.Verbs.Add("POST")

' Add the new rule to the collection.
authorizationSection.Rules.Add(authorizationRule)

Комментарии

Коллекция не должна содержать добавляемый AuthorizationRule объект.

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

См. также раздел