XmlElement.HasAttributes Property
.NET Framework 4
Gets a boolean value indicating whether the current node has any attributes.
Assembly: System.Xml (in System.Xml.dll)
The following example removes all attributes from the root element.
using System; using System.IO; using System.Xml; public class Sample { public static void Main() { XmlDocument doc = new XmlDocument(); doc.LoadXml("<book genre='novel' ISBN='1-861001-57-5'>" + "<title>Pride And Prejudice</title>" + "</book>"); XmlElement root = doc.DocumentElement; // Remove all attributes from the root element. if (root.HasAttributes) root.RemoveAllAttributes(); Console.WriteLine("Display the modified XML..."); Console.WriteLine(doc.InnerXml); } }
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, 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.