AuthorizationRule.Action Vlastnost

Definice

Získá nebo nastaví AuthorizationRule akci.

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

Hodnota vlastnosti

AuthorizationRuleAction

Jedna z AuthorizationRuleAction hodnot.

Příklady

Následující příklad kódu ukazuje, jak tuto vlastnost použít.

 // 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

V době běhu se autorizační modul iteruje a allow deny prvky, dokud nenajde první pravidlo přístupu, které odpovídá konkrétnímu uživateli. Potom udělí nebo odmítne přístup k prostředku adresy URL v závislosti na tom, jestli bylo allow nalezeno první pravidlo přístupu nebo deny. Přístup je ve výchozím nastavení povolený.

Platí pro