Xml.Evaluate
Overview
Returns string value of current node
string myXml.Evaluate()
Returns string value of a specified xpath.
string myXml.Evaluate(xpath: string)
Arguments
string xpath
XPath to be evaluated.
Remarks
Finding the value of a current customer's Id:
Example
Evaluate with an xpath
var id = $Xml.Evaluate('CustomerInformation/Customer/Id');
The below example is similar to the one above but with double slashes. It is used to look up for the Customer node in everywhere starting from the root element.
Example
Evaluate with an xpath
var id = $Xml.Evaluate('//Customer/Id');
See Also
XPath+and+XQuery
Copyright © 2010 - 2023 Emakin. All rights reserved.