tags:

views:

144

answers:

2

Hi all,

Has anyone experience getting values from a RSS-CB file, I would like to get the value from:

<cb:value frequency="daily" decimals="4">1.3607</cb:value>.

The location of the rss is http://www.ecb.int/rss/fxref-usd.html. Any tips what the best way is to go about it?

Thanks!

+1  A: 

Check out http://www.rssdotnet.com/. It is very good at reading RSS feeds. And Im pretty sure you will be able to add a namespace to the parser so you can get to the value you want

Mcbeev
+1  A: 

You could use Linq to XML along with the XNamespace class. More info on MSDN.

alexn
Unfortunately I'm stuck using the 2.0 framework in this existing project, it did cross my mind. Thanks!
Symbioxys