I'm extracting XML node from an XElement. When I use XElement.Value it strips any HTML that may be in the node.
I know that if I do XElement.ToString() I can keep the HTML, but it also gives me the node tags. Is there any way to extract the content of a Node as is without the HTML being stripped out?
Cheers.