다음을 통해 공유


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)

설명

런타임 시 권한 부여 모듈을 반복 allowdeny 요소 첫 번째 액세스를 발견할 때까지 특정 사용자에 부합 하는 규칙입니다. 그런 다음 허용 하거나 첫 번째 액세스 규칙을 찾을 수 인지에 따라 URL 리소스에 대 한 액세스 거부 allow 또는 deny합니다. 기본적으로 액세스가 허용 됩니다.

적용 대상