Control over the connection used in HttpWebRequest

Is it possible to have any control over the connection used for the HttpWebRequest? I use the BindIPEndPointDelegate property to set the IP to bind the request. However, I want to have 5 connections with a permanent connection, which are bypassed using all different IP addresses.

Or is there some way I can contextualize / share connections so that I can say β€œuse this connection with a live connection” specifically?

+4
source share
1 answer

It appears that the ConnectionGroupName property in the HttpWebRequests pool uses the connections associated with this string.

+1
source

All Articles