AuthorizationRule 클래스
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
AuthorizationRule 클래스를 사용하면 구성 파일의 authorization
섹션을 프로그래밍 방식으로 액세스하고 수정할 수 있습니다. 이 클래스는 상속될 수 없습니다.
public ref class AuthorizationRule sealed : System::Configuration::ConfigurationElement
public sealed class AuthorizationRule : System.Configuration.ConfigurationElement
type AuthorizationRule = class
inherit ConfigurationElement
Public NotInheritable Class AuthorizationRule
Inherits ConfigurationElement
- 상속
예제
다음 코드 예제를 사용 하는 방법에 설명 합니다 AuthorizationRule합니다.
참고
사용 하는 경우는 credentials
섹션에서 설명 하는 지침을 수행 해야 합니다 ASP.NET 인증합니다. 확장성 및 보안 기능 강화에 대 한 외부 데이터베이스를 사용 하 여 사용자의 자격 증명을 저장 것이 좋습니다. 보안 ASP.NET 애플리케이션을 빌드하는 방법에 대한 자세한 내용은 ASP.NET 애플리케이션 보안 및 보안 ASP.NET 애플리케이션 빌드: 인증, 권한 부여 및 보안 통신을 참조하세요.
// Create an authorization rule object.
AuthorizationRuleAction action =
AuthorizationRuleAction.Deny;
AuthorizationRule authorizationRule =
new System.Web.Configuration.AuthorizationRule(action);
' Create an authorization rule object.
Dim action As AuthorizationRuleAction = _
AuthorizationRuleAction.Deny
Dim authorizationRule = _
New System.Web.Configuration.AuthorizationRule(action)
// 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)
설명
AuthorizationRule 클래스를 사용하면 구성 파일의 authorization
섹션을 프로그래밍 방식으로 액세스하고 수정할 수 있습니다.
이 형식을 포함 하는 그룹의 일부인 합니다 AuthorizationSection는 AuthorizationRuleCollection, 및 AuthorizationRuleAction 형식입니다.
참고
AuthorizationSection 구성 계층 구조의 모든 수준에서 구성 정보를 업데이트할 수 있습니다.
생성자
AuthorizationRule(AuthorizationRuleAction) |
전달된 개체를 사용하여 AuthorizationRule 클래스의 새 인스턴스를 만듭니다. |
속성
메서드
적용 대상
추가 정보
.NET