XNode.ReplaceWith Method (Object[])
[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]
Replaces this node with the specified content.
Assembly: System.Xml.Linq (in System.Xml.Linq.dll)
Parameters
- content
- Type:
System.Object
[]
A parameter list of the new content.
This method first removes this node from its parent, and then adds the specified content to this node's parent, in the place of this node.
For details about the valid content that can be passed to this function, see Valid Content of XElement and XDocument Objects in the .NET Framework documentation.
The following example shows using the results of a LINQ to XML query as the input to this method.
XElement srcTree = new XElement("Root", new XElement("Element1", 1), new XElement("Element2", 2), new XElement("Element3", 3), new XElement("Element4", 4), new XElement("Element5", 5) ); XElement xmlTree = new XElement("Root", new XElement("Child1", 1), new XElement("Child2", 2), new XElement("Child3", 3), new XElement("Child4", 4), new XElement("Child5", 5) ); XElement child3 = xmlTree.Element("Child3"); child3.ReplaceWith( from el in srcTree.Elements() where (int)el > 3 select el );