↧
Answer by Jon Skeet for another test of atom feed read fails
I strongly suspect that an exception is being thrown - but you can't tell because you're "handling" all exceptions by returning an empty list, without recording what the exception is or any kind of...
View Articleanother test of atom feed read fails
I am using this function public static IList<Item> ParseAtom(string url) { try { XDocument doc = XDocument.Load(url); // Feed/Entry var entries = from item in doc.Root.Elements().Where(i =>...
View Article