/// <summary>
 /// Use this Constructor if you are on the Client Side, only
 /// </summary>
 public WebProxyClientProvider(Uri serviceUri)
 {
     this.httpRequestHandler = new HttpRequestHandler(serviceUri, CancellationToken.None);
 }
 public WebProxyClientProvider()
 {
     this.httpRequestHandler = new HttpRequestHandler();
 }