/// <summary> /// Fluently specify that an existing FlurlClient should be used to call the Url, rather than creating a new one. /// Enables re-using the underlying HttpClient. /// </summary> /// <param name="client">The FlurlClient to use in calling the Url</param> /// <returns></returns> public static FlurlClient WithClient(this string url, FlurlClient client) { return(client.WithUrl(url)); }