XElement.RemoveAll Method
[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]
Removes nodes and attributes from this XElement.
Assembly: System.Xml.Linq (in System.Xml.Linq.dll)
The following example creates an element with attributes and child elements. It then calls this method to remove both the attributes and the child elements.
Dim output As New StringBuilder 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 output.Append(root) output.Append(Environment.NewLine) OutputTextBlock.Text = output.ToString()
Show: