I have always used so far:
HttpWebRequest request = (HttpWebRequest)WebRequest.Create(targetUri);
do the request
.................
request.ServicePoint.
Now I would like to use the new HttpClient from .net 4.5 and I don't know how to access the ServicePoint properties.
Any ideas how can I access the ServicePoint by using HttpClient?