I'm making an application which constantly scans remote website for any changes.
I'm using System.Net.Http.HttpClient
, but I noticed that it probably doesn't support reusing connection.
Requests are executed one after one, but normally they take about 250 ms to be completed. When I have Fiddler turned on with "Reuse server connections" option on, it drops to as low as 150 ms per request.
I guess I have misconfigured HttpClient
, but I can't find any information in MSDN reference which would help me to solve the problem.