Overview
Selects a single node by specified xpath.Xml myXml.SelectSingle(xpath: string)
Xml myXml.SelectSingle(xpath: string, callback: (node: Xml) => void)
Arguments
string xpath
Selects a single node by specified xpath.
(node: Xml) => void callback
Callback function to execute on selected node.
Remarks
If multiple nodes found on xpath, first node is selected.
Example
Basic usage
$Xml.SelectSingle('//Customer', function() { var customerId = this.Evaluate('Id'); });