↧
Answer by Omid Mafakher for How can work online with RSS feed URL in Mono for...
using (var client = new System.Net.WebClient()) { var all = client.DownloadString(new Uri("http://www.yoursite.com/rss")); var doc = XElement.Parse(all); var items = (from el in...
View ArticleAnswer by Saeed Hashemi for How can work online with RSS feed URL in Mono for...
XmlTextReader reader = new XmlTextReader ("http://www.mono-project.com/news/index.rss2"); reader.Read (); Console.WriteLine (reader.NodeType); // It prints "XmlDeclaration" reader.MoveToContent ();...
View ArticleHow can work online with RSS feed URL in Mono for Android?
I want to create RSS feed reader in my project that work in 15 s period and fetch new item from RSS url how can I do that from base to final ?
View Article