XElement.RemoveAll Metoda

Definice

Odebere uzly a atributy z tohoto XElementobjektu .

public:
 void RemoveAll();
public void RemoveAll ();
member this.RemoveAll : unit -> unit
Public Sub RemoveAll ()

Příklady

Následující příklad vytvoří element s atributy a podřízené elementy. Potom zavolá tuto metodu k odebrání atributů i podřízených elementů.

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)

Tento příklad vytvoří následující výstup:

<Root />

Poznámky

Tato metoda vyvolá Changed události a Changing .

Platí pro

Viz také