Have read in various places that HttpClient should be reused rather than a new instance every time.
https://aspnetmonsters.com/2016/08/2016-08-27-httpclientwrong/
I am using Autofac on a project.
Would this be a good way of making a single instance of HttpClient available to inject into services?
builder.Register(c => new HttpClient()).As<HttpClient>().SingleInstance();
Seems to work :)