/// <summary>
 /// Is the proxy bypassed for the given URL?
 /// </summary>
 /// <param name="host">The host to be tested</param>
 /// <returns>true if the host isn't passed through a proxy</returns>
 public bool IsBypassed(Uri host)
 {
     return(_proxy.IsBypassed(host));
 }