XElement.RemoveAll 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
從這個 XElement 移除節點及屬性。
public:
void RemoveAll();
public void RemoveAll ();
member this.RemoveAll : unit -> unit
Public Sub 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);
Dim root As XElement = _
<Root Attr1="1" Attr2="2" Attr3="3">
<Child1>1</Child1>
<Child2>2</Child2>
<Child3>3</Child3>
</Root>
root.RemoveAll() ' removes children elements and attributes of root
Console.WriteLine(root)
這個範例會產生下列輸出:
<Root />
備註
這個方法會引發 Changed 和 Changing 事件。