WP7: WebClient vs. HttpWebRequest


Which one should I use?
“WebClient is a wrapper class around the HttpWebRequest class that is used to perform Web service requests. WebClient can be easier to use because it returns result data to your application on the UI thread, and therefore your application does not need to manage the marshalling of data to the UI thread itself. However, if your application processes the Web Service data on the UI thread, the UI will be unresponsive until the processing is complete; causing a poor user experience, especially if the set of data being processed is large.”
Here is a sample fetching RSS using WebClient:
 
var client = new WebClient();
client.DownloadStringCompleted += (s, ev) => { responseTextBlock.Text = ev.Result; };
client.DownloadStringAsync(new Uri("http://www.sherdog.com/rss/news.xml"));
And here is the same code, using HttpWebRequest:
 
var request = (HttpWebRequest)WebRequest.Create(
                new Uri("http://www.sherdog.com/rss/news.xml"));
request.BeginGetResponse(r =>
{
    var httpRequest = (HttpWebRequest)r.AsyncState;
    var httpResponse = (HttpWebResponse)httpRequest.EndGetResponse(r);

    using (var reader = new StreamReader(httpResponse.GetResponseStream()))
    {
        var response = reader.ReadToEnd();

        Deployment.Current.Dispatcher.BeginInvoke(new Action(() =>
            {
                responseTextBlock.Text = response;
            }));
    }
}, request);
Note that on the HttpWebRequest, you have to marshal back to the UI thread!
One quick note though, some mobile provider proxies block traffic if your user agent is said to be a mobile device… To get the appropriate response, I forced my UserAgent to IE9.
 
request.UserAgent = "Mozilla/5.0 (Windows; U; MSIE 9.0; WIndows NT 9.0; en-US))";
I do not think there is a way of forcing the UserAgent on a WebClient.
posted @ 2011-12-07 17:30  Lee zhang  阅读(117)  评论(0编辑  收藏  举报