다음을 통해 공유


AuthorizationSection.Rules 속성

정의

AuthorizationRuleCollection 규칙의 AuthorizationRule을 가져옵니다.

public:
 property System::Web::Configuration::AuthorizationRuleCollection ^ Rules { System::Web::Configuration::AuthorizationRuleCollection ^ get(); };
[System.Configuration.ConfigurationProperty("", IsDefaultCollection=true)]
public System.Web.Configuration.AuthorizationRuleCollection Rules { get; }
[<System.Configuration.ConfigurationProperty("", IsDefaultCollection=true)>]
member this.Rules : System.Web.Configuration.AuthorizationRuleCollection
Public ReadOnly Property Rules As AuthorizationRuleCollection

속성 값

AuthorizationRuleCollection

AuthorizationRuleCollection에 정의된 AuthorizationRule 규칙의 AuthorizationSection입니다.

특성

예제

다음 코드 예제를 사용 하는 방법을 보여 줍니다는 Rules합니다.

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

설명

Rules 이 메서드에서 반환 된 컬렉션의 기본 구성 파일의 실제 요소를 참조 하지 않습니다. 포함 하는 규칙을 쉽게 액세스할 수 있는 구문입니다. 구성 파일의 요소를 처리 하기 위한 일반적인 패턴입니다.

적용 대상

추가 정보