AuthorizationRule.Action Özellik

Tanım

Eylemi alır veya ayarlar 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

Özellik Değeri

AuthorizationRuleAction

Değerlerden AuthorizationRuleAction biri.

Örnekler

Aşağıdaki kod örneğinde bu özelliğin nasıl kullanılacağı gösterilmektedir.

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

Açıklamalar

Çalışma zamanında yetkilendirme modülü, belirli bir kullanıcıya uyan ilk erişim kuralını bulana kadar ve deny öğeleri arasında allow yinelenir. Daha sonra, bulunan allow ilk erişim kuralının veya olmasına bağlı olarak URL kaynağına erişim verir veya denyerişimini reddeder. Erişime varsayılan olarak izin verilir.

Şunlara uygulanır