다음을 통해 공유


ClientTargetCollection.Add(ClientTarget) 메서드

정의

지정된 ClientTarget 개체를 컬렉션에 추가합니다.

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

매개 변수

clientTarget
ClientTarget

컬렉션에 추가할 ClientTarget입니다.

예제

다음 코드 예제에서는 추가 ClientTarget 개체는 ClientTargetCollection 컬렉션입니다.

코드 예제에서는 컬렉션을 가져오는 방법에 대 한 자세한 내용은 참조는 ClientTargetCollection 클래스 개요입니다.


// Create a new ClientTarget object.
clientTarget = new ClientTarget(
  "my alias", "My User Agent"); 
  
// Add the clientTarget to 
// the collection.
clientTargets.Add(clientTarget);

// Update the configuration file.
if (!clientTargetSection.IsReadOnly())
  configuration.Save();
' Create a new ClientTarget object.
clientTarget = New ClientTarget( _
"my alias", "My User Agent")

' Add the clientTarget to 
' the collection.
clientTargets.Add(clientTarget)

' Update the configuration file.
If Not clientTargetSection.IsReadOnly() Then
    configuration.Save()
End If

설명

클라이언트 대상 컬렉션에 추가 하기 전에 만들어야 합니다는 ClientTarget 개체를 초기화 해당 AliasUserAgent 속성입니다.

적용 대상

추가 정보