AuthorizationRule.Action Eigenschaft
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.
Ruft die AuthorizationRule-Aktion ab oder legt diese fest.
public:
property System::Web::Configuration::AuthorizationRuleAction Action { System::Web::Configuration::AuthorizationRuleAction get(); void set(System::Web::Configuration::AuthorizationRuleAction value); };
public System.Web.Configuration.AuthorizationRuleAction Action { get; set; }
member this.Action : System.Web.Configuration.AuthorizationRuleAction with get, set
Public Property Action As AuthorizationRuleAction
Eigenschaftswert
Einer der AuthorizationRuleAction-Werte.
Beispiele
Im folgenden Codebeispiel wird gezeigt, wie Sie diese Eigenschaft verwenden.
// 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
Zum Laufzeitzeitpunkt wird das Autorisierungsmodul durch und Elemente durchlaufen, deny
bis er die erste Zugriffsregel findetallow
, die einem bestimmten Benutzer entspricht. Anschließend wird der Zugriff auf eine URL-Ressource gewährt oder verweigert, je nachdem, ob die erste Zugriffsregel gefunden wurde allow
oder deny
. Der Zugriff ist standardmäßig zulässig.