AuthorizationRuleCollection.Add(AuthorizationRule) Methode
Definition
Wichtig
Einige Informationen beziehen sich auf Vorabversionen, die vor dem Release ggf. grundlegend überarbeitet werden. Microsoft übernimmt hinsichtlich der hier bereitgestellten Informationen keine Gewährleistungen, seien sie ausdrücklich oder konkludent.
Fügt der Auflistung ein AuthorizationRule-Objekt hinzu.
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)
Parameter
- rule
- AuthorizationRule
Das AuthorizationRule-Objekt, das zur Auflistung hinzugefügt werden soll.
Ausnahmen
Das AuthorizationRule-Objekt ist in der Auflistung bereits vorhanden, oder die Auflistung ist schreibgeschützt.
Beispiele
Im folgenden Codebeispiel wird die Verwendung der Add-Methode veranschaulicht.
// 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)
Hinweise
Die Auflistung darf nicht bereits das Objekt enthalten, das AuthorizationRule Sie hinzufügen.