Not able to fetch one item from RSS Feed XML file - XML Namespace

@sachinns
looking at the returned RSS Data I encountered that the namespace definitions are returned. So it differs from rss returned by the Link. However it made it more clear to the implementation

media:thumbnail - the element thumbnail is defined under a particual namespace with the prefix media

adding a variable of type XNamespace with the namespace value allows to access the element thumbail with following syntax:

grafik

as mentioned working with local name would look like this:
grafik

and with XPath / local name approach it looks like this:

find the reworked xaml here:
Main_V2.xaml (20.4 KB)

1 Like