I\'m trying to make a webrequest through a proxy on Windows phone 7. From what I can see the Compact Framework does not include the configuring of a proxy for the HttpWebReq
This worked for me.
String url = "some url"; IWebProxy proxy = WebRequest.DefaultWebProxy; proxy.Credentials = CredentialCache.DefaultCredentials; RestClient client = new RestClient(url); { Proxy = proxy, };