32

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

  1. System.Net.ServicePointManager.DefaultConnectionLimit
  2. System.Net.ServicePointManager.MaxServicePointIdleTime

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

Pooven
  • 1,744
  • 1
  • 25
  • 44
BuddyJoe
  • 69,735
  • 114
  • 291
  • 466

1 Answers1

31

Here is a great explanation:

Understanding MaxServicePointIdleTime and DefaultConnectionLimit

Glenn
  • 1,687
  • 15
  • 21
BigJoe714
  • 6,732
  • 7
  • 46
  • 50
  • 1
    The link is broken :( But this might be the new URL: https://learn.microsoft.com/de-de/archive/blogs/jpsanders/understanding-maxservicepointidletime-and-defaultconnectionlimit – flayn Jan 07 '20 at 17:01
  • 1
    Fixed the link in the post. Thanks @flayn – Glenn Jan 14 '20 at 14:49