/// <summary>
 /// Returns the URI for the proxy for a given destination
 /// </summary>
 /// <param name="destination">The destination URL</param>
 /// <returns>The proxy to use for the given destination (or null)</returns>
 public Uri GetProxy(Uri destination)
 {
     return(_proxy.GetProxy(destination));
 }