Obtaining InnerText of just the current node with XmlNode

Theatapsres

New Member
I have an XMLNode whose body looks like this: (via OpenCalais)\[code\] <SocialTag importance="2">Signal processing<originalValue>Signal processing</originalValue></SocialTag>\[/code\]When I call \[code\]XMLMNode.InnerText\[/code\] on it, I get back:\[code\]SignalprocessingSignalprocessing\[/code\]However, I only want the InnerText from the tag itself, and not the InnerText of the child 'original value' node.When I call \[code\]XMLNode.Value\[/code\], it returns null.How can I get just the InnerText of this node, without concatenating all of the InnerTexts of other child nodes?
 
Back
Top