다음을 통해 공유


ClientTargetCollection.Remove 메서드

정의

컬렉션에서 ClientTarget 개체를 제거합니다.

오버로드

Remove(String)

컬렉션에서 지정된 별칭을 가진 ClientTarget 개체를 제거합니다.

Remove(ClientTarget)

컬렉션에서 지정된 ClientTarget 개체를 제거합니다.

Remove(String)

컬렉션에서 지정된 별칭을 가진 ClientTarget 개체를 제거합니다.

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

매개 변수

name
String

제거할 ClientTarget의 별칭입니다.

예제

다음 코드 예제를 제거 합니다 ClientTarget 에서 개체를 ClientTargetCollection 컬렉션입니다.

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


// Remove the client target with the
// specified alias from the collection
// (if exists).
clientTargets.Remove("my alias");

// Update the configuration file.
if (!clientTargetSection.IsReadOnly())
  configuration.Save();
' Remove the client target with the
' specified alias from the collection
' (if exists).
clientTargets.Remove("my alias")

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

설명

Remove 메서드를 add 요소에는 clientTarget 삽입 고 현재 계층 구조 수준에 있는 섹션을 remove 요소입니다. 합니다 remove 요소에 대 한 참조를 효과적으로 제거 합니다 add 부모 구성에 정의 된 요소 파일 계층 구조에서 상위 수준에 있지만 삭제 하지 않습니다.

추가 정보

적용 대상

Remove(ClientTarget)

컬렉션에서 지정된 ClientTarget 개체를 제거합니다.

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

매개 변수

clientTarget
ClientTarget

제거할 ClientTarget입니다.

예제

다음 코드 예제를 제거 합니다 ClientTarget 에서 개체를 ClientTargetCollection 컬렉션입니다.

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


// Create a ClientTarget object.
clientTarget = new ClientTarget(
  "my alias", "My User Agent");

// Remove it from the collection
// (if exists).
clientTargets.Remove(clientTarget);

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

' Remove it from the collection
' (if exists).
clientTargets.Remove(clientTarget)

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

설명

Remove 메서드를 add 요소에는 clientTarget 삽입 고 현재 계층 구조 수준에 있는 섹션을 remove 요소입니다. 합니다 remove 요소에 대 한 참조를 효과적으로 제거 합니다 add 부모 구성에 정의 된 요소 파일 계층 구조에서 상위 수준에 있지만 삭제 하지 않습니다.

추가 정보

적용 대상