services.AddHttpClient

Posted D&J

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了services.AddHttpClient相关的知识,希望对你有一定的参考价值。

 

public void AddInsuranceHttp(IServiceCollection services)
{
services.AddHttpClient("INSURANCE", option =>
{
option.Timeout = new TimeSpan(0, 0, 60);

}).ConfigurePrimaryHttpMessageHandler(() =>
{
return new HttpClientHandler()
{
MaxRequestContentBufferSize = 102400 ,
AutomaticDecompression = DecompressionMethods.GZip ,
ServerCertificateCustomValidationCallback = (message, cert, chain, error) => true
};
});
}

  

以上是关于services.AddHttpClient的主要内容,如果未能解决你的问题,请参考以下文章

对 AddHttpClient 的重复调用会相互覆盖吗?

如何在 Startup 中将选项模式与这些服务一起使用?

访问服务器上的 HttpClientHandler.Credentials?

如何使用 Ajax 调用在 API 中动态调用 ActionResult?

IHttpClientFactory 并更改基础 HttpClient.BaseAddress

是单例 HttpClient X 分钟后接收新的 HttpMessageHandler