Quantcast
Channel: How can work online with RSS feed URL in Mono for Android? - Stack Overflow
Browsing all 3 articles
Browse latest View live

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 Article



Answer 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 Article

How 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
Browsing all 3 articles
Browse latest View live




Latest Images