Xml.OuterXml
Overview
Returns the outer xml of the current node.
string myXml.OuterXml()
Returns the outer xml of the current node or updates outer xml of current node.
string myXml.OuterXml(value: string)
Arguments
string value
Outer xml to replace. If not specified no change applied.
Remarks
If value specified; this method directly changes the outer xml content without schema definitions. If you need schema based change please use Xml.Copy method.
Example
Get outer xml
var xml = $Xml.SelectSingle('//Customer').OuterXml();
Example
Update outer xml.
$Xml.OuterXml('<Customer><Name>John</Name></Customer>');
See Also
Copyright © 2010 - 2023 Emakin. All rights reserved.