I see this type of question often.
I want to get XML from another URL. In MSXML, I used the ServerXMLHTTP component. How do I do this in .NET?
The simple answer is that the XmlTextReader allows you to specify a URL in its constructor:
public XmlTextReader(string url);
However, sometimes you need a little more control over how you get to the external resource. For instance, you might need to supply custom credentials, add special headers to the HTTP request, or otherwise manipulate the data being sent in the request body. You are provided this control through the System.Net.HttpWebRequest class. Here is an example of using the HttpWebRequest to form a request and using the response stream to construct an XmlTextReader.
Scott Guthrie posted a great example of how to create a feed reader using LINQ to XML . Today, I see
PingBack from http://msdnrss.thecoderblogs.com/2007/09/04/use-linq-and-net-35-to-convert-rss-to-json/