Versions Compared

Key

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

...

If value specified; this method directly changes the inner xml content without schema definitions. If you need schema based change please use Xml.Copy method.

Example

Update Get inner xml

Code Block
languagejs
var xml = $Xml.InnerXmlSelectSingle('<Customer><Name>John</Name></Customer>Customer').InnerXml();

...

Example

Get Update inner xml

Code Block
languagejs
var xml = $Xml.SelectSingleInnerXml('<Customer><Name>John</Name></CustomerCustomer>').InnerXml();

...