Reputation: 1
How can I read a xml element, something like:
<content:encoded><![CDATA[<blockquote><p>some data here ]]<content:encoded>
I want to read the above xml node in C#, but when I use...
"content:encoded"
.. as the xpath runtime error come:
IXmlNode node = parent.SelectSingleNode("content:encoded");
How should I write the xpath for above xml?
Upvotes: 0
Views: 875