Given this XML found here.
How can I get each contact item individually?
For example, say I wanted to get only twitter:
I tried this:
return doc.XPathSelectElement("/ipb/profile/contactinformation/contact[type/text() = 'LinkedIn']/value").Value;
But that returns nothing. Any help?