AuthorizationRule.Action 속성
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
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 값 중 하나입니다.
예제
다음 코드 예제에는이 속성을 사용 하는 방법을 보여 줍니다.
// 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
합니다. 기본적으로 액세스가 허용 됩니다.