I have a static method that converts a html file and returns an XMLDocument object.

After doing extensive research, the following question has arised:

Can pass an XMLDocument object to a XPathDocument object, to make it easy when simply reading data from the document and not editing it.

Research01

MSDN

Please reply and let me know if this is possible? If so, how?

Cheers.

link|improve this question

why do you need XPathDocument if you don't query it? – Andrey Oct 14 '10 at 13:40
Oops, typo ... just edited it now. – IbrarMumtaz Oct 14 '10 at 13:44
feedback

1 Answer

How are you reading data from the document? Both XmlDocument and XPathDocument have a CreateNavigator method that returns an XPathNavigator for reading the document. Otherwise, just stream the XmlDocument into a MemoryStream and create the XPathDocument from that.

link|improve this answer
Cheers dude ... I am using SGMLReader to produce my XML document. WHenever I feed this into a XPathDocument I get one root object with all the html passed into the inner text, which is useless for me :( – IbrarMumtaz Oct 15 '10 at 8:30
feedback

Your Answer

 
or
required, but never shown

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