.NET 4.5 HttpClient request ServicePoint
本文关键字:request ServicePoint HttpClient NET | 更新日期: 2023-09-27 18:33:56
到目前为止我一直使用:
HttpWebRequest request = (HttpWebRequest)WebRequest.Create(targetUri);
do the request
.................
request.ServicePoint.
现在我想使用.net 4.5中的新HttpClient,但我不知道如何访问ServicePoint属性。
任何想法如何使用 HttpClient 访问服务点?
我相信你将不得不使用ServicePointManager来做你想做的事情。 类似的东西;
ServicePointManager.FindServicePoint(targetUri)