다음을 통해 공유


AuthorizationRuleCollection.Add(AuthorizationRule) 메서드

정의

컬렉션에 AuthorizationRule 개체를 추가합니다.

public:
 void Add(System::Web::Configuration::AuthorizationRule ^ rule);
public void Add (System.Web.Configuration.AuthorizationRule rule);
member this.Add : System.Web.Configuration.AuthorizationRule -> unit
Public Sub Add (rule As AuthorizationRule)

매개 변수

rule
AuthorizationRule

컬렉션에 추가할 AuthorizationRule 개체입니다.

예외

AuthorizationRule 개체가 컬렉션에 이미 있거나 컬렉션이 읽기 전용인 경우

예제

다음 코드 예제에서는 Add 메서드를 사용하는 방법을 보여 줍니다.

 // 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 추가 하는 개체입니다.

적용 대상

추가 정보