Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Overview

Selects a single node by specified xpath.

Xml myXml.SelectSingle(xpath: string)

Selects a single node by specified xpath.

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

Code Block
languagejs
$Xml.SelectSingle('//Customer', function() {
   var customerId = this.Evaluate('Id');
});