See Also: XmlNodeList Members
Changes to the children of the node object that the System.Xml.XmlNodeList collection was created from are immediately reflected in the nodes returned by the XmlNodeList properties and methods. XmlNodeList supports iteration and indexed access.
XmlNodeList is returned by the following properties and methods.
XmlNode.ChildNodes - Returns an XmlNodeList containing all the children of the node.
XmlNode.SelectNodes(string) - Returns an XmlNodeList containing a collection of nodes matching the XPath query.
GetElementsByTagName - Returns an XmlNodeList containing a list of all descendant elements that match the specified name. This method is available in both the System.Xml.XmlDocument and System.Xml.XmlElement classes.