XPathNavigator.Evaluate Method (XPathExpression, XPathNodeIterator)
[This documentation is for preview only, and is subject to change in later releases. Blank topics are included as placeholders.]
Uses the supplied context to evaluate the XPathExpression, and returns the typed result.
Namespace: System.Xml.XPath
Assembly: System.Xml (in System.Xml.dll)
Parameters
- expr
- Type: System.Xml.XPath.XPathExpression
An XPathExpression that can be evaluated.
- context
- Type: System.Xml.XPath.XPathNodeIterator
An XPathNodeIterator that points to the selected node set that the evaluation is to be performed on.
Return Value
Type: System.ObjectThe result of the expression (Boolean, number, string, or node set). This maps to Boolean, Double, String, or XPathNodeIterator objects respectively.
| Exception | Condition |
|---|---|
| ArgumentException |
The return type of the XPath expression is a node set. |
| XPathException |
The XPath expression is not valid. |
The expression is evaluated using the Current node of the XPathNodeIterator as the context node. If context is null, the node on which the XPathNavigator is currently positioned is used as the context node.
The position() and last() functions, unless used as a predicate in a location step, always return 0 under the following conditions:
-
The context argument is null.
-
MoveNext has not been called on the XPathNodeIterator.
Because the position() and last() functions work on the current node, you should not use the Current property to move away from the selected node set. This could invalidate the state of the XPathNavigator.
This method has no effect on the state of the XPathNavigator.
The following example evaluates an XPathExpression and returns a Double using the Current node of the XPathNodeIterator as the context node.
XPathDocument document = new XPathDocument("books.xml"); XPathNavigator navigator = document.CreateNavigator(); XPathNodeIterator nodes = navigator.Select("//book"); XPathExpression query = nodes.Current.Compile("sum(descendant::price)"); Double total = (double)navigator.Evaluate(query, nodes); Console.WriteLine("Total price for all books: {0}", total.ToString());
The example takes the books.xml file as an input.
<?xml version="1.0" encoding="utf-8" ?>
<bookstore>
<book genre="autobiography" publicationdate="1981-03-22" ISBN="1-861003-11-0">
<title>The Autobiography of Benjamin Franklin</title>
<author>
<first-name>Benjamin</first-name>
<last-name>Franklin</last-name>
</author>
<price>8.99</price>
</book>
<book genre="novel" publicationdate="1967-11-17" ISBN="0-201-63361-2">
<title>The Confidence Man</title>
<author>
<first-name>Herman</first-name>
<last-name>Melville</last-name>
</author>
<price>11.99</price>
</book>
<book genre="philosophy" publicationdate="1991-02-15" ISBN="1-861001-57-6">
<title>The Gorgias</title>
<author>
<name>Plato</name>
</author>
<price>9.99</price>
</book>
</bookstore>
Windows 8 Consumer Preview, Windows Server 8 Beta, Windows 7, Windows Server 2008 SP2, 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.