vote up 2 vote down star

Anyone know off the top of their heads how to convert a System.Xml.XmlNode to System.Xml.Linq.XNode?

flag

3 Answers

vote up 2 vote down check

I've never tried, but my first thought would be something like:

XmlNode myNode;
XNode translatedNode = XDocument.Parse(myNode.OuterXml);
link|flag
vote up 0 vote down

I don't think there is, but why would you need to? Each is the lowest 'leaf' of the Xml structure for different ways of reading the document.

If you use Linq to Xml and XDocument you'll have all the linq-style syntax and new functionality, but really all that's about selecting a node.

Once you have the element that you're dealing with, why do you need to switch?

link|flag
Just had some old code which is returning an XmlNode but I want to query this node, which appears to actually be a document. – Dave Oct 23 '08 at 20:33
vote up 4 vote down

Eric White's blog is the place to be for cool XML/XLINQ conversions and such. I know this question pre-date's the post but I found it while looking at some other Q, so maybe people still come across this a fair amount. His blog has plenty of optimized LINQ, like I suspect the .Parse() call for the origional responce is non-optimal, well in-fact I know it is not.

Parse is going to require that the XML be loaded up in one shot, Eric used extension methods which process the XML conversion with XmlReader/Writer's. Those methods are able to stream the input, so if your XML is of any substantional size, you have to use them.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.