XmlNamedNodeMap.GetEnumerator Method
.NET Framework 4.5
Provides support for the "foreach" style iteration over the collection of nodes in the XmlNamedNodeMap.
Assembly: System.Xml (in System.Xml.dll)
The following example displays all attributes in the collection.
using System; using System.IO; using System.Xml; using System.Collections; public class Sample { public static void Main() { XmlDocument doc = new XmlDocument(); doc.LoadXml("<book genre='novel' publicationdate='1997' " + " ISBN='1-861001-57-5'>" + " <title>Pride And Prejudice</title>" + "</book>"); XmlAttributeCollection attrColl = doc.DocumentElement.Attributes; Console.WriteLine("Display all the attributes for this book..."); IEnumerator ienum = attrColl.GetEnumerator(); while (ienum.MoveNext()) { XmlAttribute attr = (XmlAttribute)ienum.Current; Console.WriteLine("{0} = {1}", attr.Name, attr.Value); } } }
Windows 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 (Server Core Role not supported), Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.