This code works in a WPF application, but throws a NetworkException ("server not found") in WP7. Why is the difference?
WebClient client = new WebClient(); client.DownloadStringCompleted += new DownloadStringCompletedEventHandler(Client_DownloadStringCompleted); Uri token = new Uri("http://www.bing.com"); client.DownloadStringAsync(token);
Update: It seems that running Fiddler while debugging WP7 was the cause. Fiddler also crashes the browser on an emulator. Will there be a message if I find a workaround for using Fiddler to debug the emulator.
c # windows-phone-7 download
James cadd
source share