Overview
Returns string value of current nodestring myXml.Evaluate()
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
- Xml.EvaluateBoolean
- Xml.EvaluateDateTime
- Xml.EvaluateNumber