AuthorizationRuleCollection.Add Method (AuthorizationRule)
.NET Framework (current version)
Adds a AuthorizationRule object to the collection.
Assembly: System.Web (in System.Web.dll)
Parameters
- rule
-
Type:
System.Web.Configuration.AuthorizationRule
The AuthorizationRule object to add to the collection.
| Exception | Condition |
|---|---|
| ConfigurationException | The AuthorizationRule object already exists in the collection, or the collection is read-only. |
The collection must not already contain the AuthorizationRule object you are adding.
The following code example shows how to use the Add method.
// 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);
.NET Framework
Available since 2.0
Available since 2.0
Show: