Search code examples
c#httpclient

What is HttpClient's default maximum connections


Does HttpClient use the same ServicePoint Connection Limit as HttpWebRequest?

Thanks


Solution

  • It uses the same ServicePointManager so the answer is yes.

    You can change the limit programmatically though if you want, see this