An enumerator of XmlNode instances.
Object
ValueType
XmlNodeEnumerator
[Visual Basic] Public Structure XmlNodeEnumerator [C#] public struct XmlNodeEnumerator [C++] public __value struct XmlNodeEnumerator
[JScript] In JScript, you can use the structures in the NGWS frameworks, but you cannot define your own.
Instances of this struct are returned by the GetEnumerator method.
Languages that support a
Languages that do not support a
XmlNodeEnumerator e = node.GetEnumerator();
while (e.MoveNext()) {
DoOperation(e.Current);
}
Requirements
Namespace: System.Xml
Assembly: System.dll
XmlNodeEnumerator Members | System.Xml Namespace | GetEnumerator