AuthorizationRule.Action Свойство

Определение

Получает или задает действие AuthorizationRule.

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

Значение свойства

AuthorizationRuleAction

Одно из значений перечисления AuthorizationRuleAction.

Примеры

В следующем примере кода показано, как использовать это свойство.

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

Комментарии

Во время выполнения модуль авторизации выполняет итератор allow и deny элементы, пока не обнаружит первое правило доступа, соответствующее конкретному пользователю. Затем он предоставляет или запрещает доступ к ресурсу URL-адреса в зависимости от того, найдено allow ли первое правило доступа.deny Доступ разрешен по умолчанию.

Применяется к