AuthorizationRuleCollection.Add(AuthorizationRule) Methode
Definitie
Belangrijk
Bepaalde informatie heeft betrekking op een voorlopige productversie die aanzienlijk kan worden gewijzigd voordat deze wordt uitgebracht. Microsoft biedt geen enkele expliciete of impliciete garanties met betrekking tot de informatie die hier wordt verstrekt.
Hiermee voegt u een AuthorizationRule object toe aan de verzameling.
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)
Parameters
- rule
- AuthorizationRule
Het AuthorizationRule object dat moet worden toegevoegd aan de verzameling.
Uitzonderingen
Het AuthorizationRule object bestaat al in de verzameling of de verzameling heeft het kenmerk Alleen-lezen.
Voorbeelden
In het volgende codevoorbeeld ziet u hoe u de Add methode gebruikt.
// 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)
Opmerkingen
De verzameling mag niet al het AuthorizationRule object bevatten dat u toevoegt.