C# Class Mvp.Xml.Common.XmlNodeListFactory

Constructs XmlNodeList instances from XPathNodeIterator objects.
See http://weblogs.asp.net/cazzu/archive/2004/04/14/113479.aspx.

Author: Daniel Cazzulino, blog

Contributors: Oleg Tkachenko, http://www.xmllab.net

Datei anzeigen Open project: Monobjc/monobjc-tools

Public Methods

Method Description
CreateNodeList ( XPathNodeIterator iterator ) : XmlNodeList

Creates an instance of a XmlNodeList that allows enumerating XmlNode elements in the iterator.

The underlying XML store used to issue the query must be an object inheriting XmlNode, such as XmlDocument.

Private Methods

Method Description
XmlNodeListFactory ( ) : System

Method Details

CreateNodeList() public static method

Creates an instance of a XmlNodeList that allows enumerating XmlNode elements in the iterator.
The underlying XML store used to issue the query must be an object inheriting XmlNode, such as XmlDocument.
public static CreateNodeList ( XPathNodeIterator iterator ) : XmlNodeList
iterator System.Xml.XPath.XPathNodeIterator The result of a previous node selection /// through an query.
return System.Xml.XmlNodeList