如何将HttpClientHandler添加到url?

时间:2017-09-24 15:12:16

标签: c# dotnet-httpclient flurl

我有这个请求处理程序:

var httpClientHandler = new HttpClientHandler
{
    Proxy = new WebProxy(proxy.Address, proxy.Port),
    UseProxy = true
};

var url = new Url(hostUrl)
    .AppendPathSegment(pathSegment);

如何将请求处理程序添加到FlurlClient?

1 个答案:

答案 0 :(得分:2)

创建自己的ProxiedHttpClientFactory,覆盖CreateMessageHandler()方法:

public class ProxiedHttpClientFactory : DefaultHttpClientFactory
{
    private readonly string _proxyAddress;
    private readonly int _proxyPort;

    public ProxiedHttpClientFactory(string proxyAddress, int proxyPort)
    {
        this._proxyAddress = proxyAddress;
        this._proxyPort = proxyPort;
    }

    public override HttpMessageHandler CreateMessageHandler()
    {
        return new HttpClientHandler
        {
            Proxy = new WebProxy(this._proxyAddress, this._proxyPort),
            UseProxy = true
        };
    }
}

然后使用它:

var settings = new FlurlHttpSettings
{
    HttpClientFactory = new ProxiedHttpClientFactory("my.proxy.com", 8080)
};

var client = new FlurlClient(settings);

在现有的Url实例上:

var url = new Url(hostUrl)
               .AppendPathSegment(pathSegment)
               .ConfigureClient(settings => settings.HttpClientFactory = new ProxiedHttpClientFactory("my.proxy.com", 8080));