↧
How to Rename a Node?
Thanks, all. This helped me with my project. Here is a slight variation for that allows you to rename an XmlNode. static XmlNode RenameNode(XmlNode e, string newName) { XmlDocument doc =...
View ArticleHow to Rename a Node?
Good work, Chris. However, the method as stated will fail if the element to be renamed is the root element of the document. Specifically, the InsertBefore method will throw an exception because the...
View ArticleHow to Rename a Node?
There is not. But this should do the trick:staticXmlElement RenameElement(XmlElement e, string newName) { XmlDocument doc = e.OwnerDocument; XmlElement newElement = doc.CreateElement(newName);...
View ArticleHow to Rename a Node?
Hi is there a function to rename a node in an xml document because i cant find one. I.e. <Rename this> blah blah </Rename This>ThanksPhil Winder
View Article