I have an xml document which is roughly as follows
Read in the input XML into one XDocument and construct a second, passing in the node you are interested in:
XDocument
XDocument newDoc = new XDocument(XDocument.Load("input.xml").Descendants("Body").First());