Reputation: 434
I have a problem which I think is related to active connections in the httpclient as documented here
I need to prove this, how can I get a list of current active connections to a particular url from my application.
Upvotes: 1
Views: 2682
Reputation: 99859
The number of "active" connections is not a clearly defined value. You can get the number of currently established connections from the ServicePoint.CurrentConnections
property.
Upvotes: 2