RSS Feed Reader in C# Express
They're built-in .NET classes. XDocument is located in the namespace System.Xml.Linq, and XmlDocument is located in System.Xml. In .NET 3.5, use XDocument. In 2.0, use XmlDocument. They're very...
View ArticleRSS Feed Reader in C# Express
Where would I find XDocument or XmlDocument? Or is it in the code...
View ArticleRSS Feed Reader in C# Express
There's nothing built in to read RSS as RSS. XDocument or XmlDocument are typically used. Have you tried those methods?Coding Light - Illuminated Ideas and Algorithms in SoftwareCoding Light Wiki•...
View ArticleRSS Feed Reader in C# Express
I know twitter isn't RSS. It has an RSS feed, and I know how to work with it. I'm trying to make the program read that RSS feed. and I know about the API limits.
View ArticleRSS Feed Reader in C# Express
RSS is XML. Use the WebClient class and download the RSS using the DownloadString method. Take the resulting string, and load it into an XDocument using the static Parse method. From there, access...
View ArticleRSS Feed Reader in C# Express
I'm trying to make a Twitter API application. So far I have the login, and the tweet box that actually tweets now. How would I make an RSS feed reader that also authentaces itself? I tried doing the...
View Article