다음을 통해 공유


ConfigurationLockCollection.Add(String) 메서드

정의

구성 개체를 컬렉션에 추가하여 잠급니다.

public:
 void Add(System::String ^ name);
public void Add (string name);
member this.Add : string -> unit
Public Sub Add (name As String)

매개 변수

name
String

구성 개체의 이름입니다.

예외

name이 컬렉션의 기존 구성 개체와 일치하지 않는 경우

예제

다음 코드 예제에서는 Add 메서드를 사용하는 방법을 보여 줍니다. 이 코드 예제는에 대해 제공 된 큰 예제의 일부는 ConfigurationLockCollection 클래스입니다.

// Add an attribute to the lock collection.
if (!lockedAttribList.Contains("enabled"))
{
  lockedAttribList.Add("enabled");
}
' Add an attribute to the lock collection.
If Not (lockedAttribList.Contains("enabled")) Then
  lockedAttribList.Add("enabled")
End If

설명

컬렉션에 구성 개체를 ConfigurationLockCollection 추가하면 구성 개체가 잠겨 있으며 컬렉션에서 제거될 때까지 수정할 수 없습니다.

적용 대상