XElement.RemoveAll 메서드

정의

XElement에서 노드 및 특성을 제거합니다.

public void RemoveAll();

예제

다음 예제에서는 특성 및 자식 요소를 사용하여 요소를 만듭니다. 그런 다음 이 메서드를 호출하여 특성과 자식 요소를 모두 제거합니다.

XElement root = new XElement("Root",
    new XAttribute("Att1", 1),
    new XAttribute("Att2", 2),
    new XAttribute("Att3", 3),
    new XElement("Child1", 1),
    new XElement("Child2", 2),
    new XElement("Child3", 3)
);
root.RemoveAll();   // removes children elements and attributes of root
Console.WriteLine(root);

이 예제는 다음과 같은 출력을 생성합니다.

<Root />

설명

이 메서드는 및 이벤트를 발생 Changed 시킬 Changing 것입니다.

적용 대상

제품 버전
.NET Core 1.0, Core 1.1, Core 2.0, Core 2.1, Core 2.2, Core 3.0, Core 3.1, 5, 6, 7, 8, 9, 10
.NET Framework 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
.NET Standard 1.0, 1.1, 1.2, 1.3, 1.4, 1.6, 2.0, 2.1
UWP 10.0

추가 정보