views:

105

answers:

1

When would you need to adjust these two settings (below)? And what do these two numbers mean for HttpWebRequests that I make?

System.Net.ServicePointManager.DefaultConnectionLimit

System.Net.ServicePointManager.MaxServicePointIdleTime

Are ServicePoint objects specific to a domainname or each unique URI requested?

+1  A: 

Here is a great explanation:

Understanding MaxServicePointIdleTime and DefaultConnectionLimit

BigJoe714