NodeRangeIterator.Create Method

Definition

Initializes the NodeRangeIterator.

This API supports the product infrastructure and is not intended to be used directly from your code.

public:
 void Create(System::Xml::XPath::XPathNavigator ^ start, System::Xml::Xsl::Runtime::XmlNavigatorFilter ^ filter, System::Xml::XPath::XPathNavigator ^ end);
public void Create (System.Xml.XPath.XPathNavigator start, System.Xml.Xsl.Runtime.XmlNavigatorFilter filter, System.Xml.XPath.XPathNavigator end);
member this.Create : System.Xml.XPath.XPathNavigator * System.Xml.Xsl.Runtime.XmlNavigatorFilter * System.Xml.XPath.XPathNavigator -> unit
Public Sub Create (start As XPathNavigator, filter As XmlNavigatorFilter, end As XPathNavigator)

Parameters

start
XPathNavigator

Node at which iteration begins.

filter
XmlNavigatorFilter

Test expression that determines whether a node is to be filtered out.

end
XPathNavigator

Node at which iteration ends.

Remarks

The method iterates over the nodes in document order, beginning with the start node through all content-typed nodes that follow the starting node, until the ending node is reached. Nodes that do not match the predicate test are filtered out.

Applies to