.NET 4.5 HttpClient请求ServicePoint

时间:2013-10-04 06:46:09

标签: c# .net-4.5

我一直用到目前为止:

HttpWebRequest request = (HttpWebRequest)WebRequest.Create(targetUri);

do the request
.................
request.ServicePoint. 

现在我想使用.net 4.5中的新HttpClient,我不知道如何访问ServicePoint属性。

任何想法如何使用HttpClient访问ServicePoint?

1 个答案:

答案 0 :(得分:2)

我相信你必须使用ServicePointManager做你想做的事。喜欢的东西;

ServicePointManager.FindServicePoint(targetUri)