Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Next »

Overview

Returns string value of a specified xpath.

string myXml.Evaluate()

Returns string value of a specified xpath.

string myXml.Evaluate(xpath: string)

Arguments

string xpath
XPath to be evaluated. If not specified, the current node is used.

Remarks

Finding the value of a current customer's Id:

Example

Evaluate with an xpath

var id = $Xml.Evaluate('CustomerInformation/Customer/Id');

Example

Evaluate with an xpath

var id = $Xml.Evaluate('//Customer/Id');
  • No labels