Will add the content as the child of the node in xPath
It’s recommended to use the ifNotExists
attribute on the Change
node to only add the child if it does not exist.
The ifNotExists
attribute requires a xPath for checking existence.
<root>
<node>value</node>
</root>
<Change type="AddChildContent" xPath="/root">
<Content>
<![CDATA[<node2>value2</node2>]]>
</Content>
</Change>
<root>
<node>value</node>
<node2>value2</node2>
</root>