.NET Framework Class Library
XElement.RemoveAttributes Method
Removes the attributes of this XElement.
Assembly: System.Xml.Linq (in System.Xml.Linq.dll)
Syntax
Visual Basic
Public Sub RemoveAttributes
C#
public void RemoveAttributes()
Visual C++
public: void RemoveAttributes()
F#
member RemoveAttributes : unit -> unit
Remarks
Examples
The following example creates an element with attributes and child elements. It then calls this method to remove the attributes. The child elements remain.
C#
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.RemoveAttributes(); Console.WriteLine(root);
Visual Basic
Dim root As XElement = _ <Root Attr1="1" Attr2="2" Attr3="3"> <Child1>1</Child1> <Child2>2</Child2> <Child3>3</Child3> </Root> root.RemoveAttributes() Console.WriteLine(root)
This example produces the following output:
xmlLang
<Root> <Child1>1</Child1> <Child2>2</Child2> <Child3>3</Child3> </Root>
Version Information
.NET Framework
Supported in: 4, 3.5.NET Framework Client Profile
Supported in: 4, 3.5 SP1Platforms
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
See Also
Reference
RemoveAttributes