Hi
I'm currently using the RSS.MET class library to open and read feeds, but I need to be able to find out if a supplied feed is actually valid. For example, if I pass it "http://www.google.com", I want it to tell me that it isn't a valid RSS feed. How would I go about doing this?
I've already tried passing it through a try .. catch block.
try
{
Rss.RssReader reader = new Rss.RssReader(cast.PodcastURL);
}
catch (Exception ex)
{
MessageBox.Show(ex.Message);
}
But that hasn't returned the desired effect.