This documentation is archived and is not being maintained.
XElement. RemoveAttributes Method
[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation . ]
Removes the attributes of this XElement .
Namespace:
System.Xml.Linq
Assembly:
System.Xml.Linq (in System.Xml.Linq.dll)
'Declaration
Public Sub RemoveAttributes
The following example creates an element with attributes and child elements. It then calls this method to remove the attributes. The child elements remain.
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.RemoveAttributes()
output.Append(root)
output.Append(Environment.NewLine)
OutputTextBlock.Text = output.ToString()
Windows Phone OS Supported in: 8.1, 8.0, 7.1, 7.0
Reference RemoveAttributes