Sdílet prostřednictvím


AuthorizationRuleCollection.Add(AuthorizationRule) Metoda

Definice

AuthorizationRule Přidá objekt do kolekce.

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)

Parametry

rule
AuthorizationRule

Objekt AuthorizationRule , který chcete přidat do kolekce.

Výjimky

Objekt AuthorizationRule již v kolekci existuje nebo je kolekce jen pro čtení.

Příklady

Následující příklad kódu ukazuje, jak použít metodu 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)

Poznámky

Kolekce již nesmí obsahovat objekt, AuthorizationRule který přidáváte.

Platí pro

Viz také