Refers to the System.
.NET Core 2.1 comes with this new factory called HttpClientFactory, but I can't figure out how to mock it to unit …
c# unit-testing moq asp.net-core-2.1 httpclientfactoryI have read the popular blog post https://www.stevejgordon.co.uk/introduction-to-httpclientfactory-aspnetcore on using HttpClientFactory To quote from it …
c# asp.net-core .net-core httpclientfactoryI want to use the HttpClientFactory that is available in .NET Core 2.1 but I also want to use the HttpClientHandler …
c# .net-core dotnet-httpclient .net-core-2.1 httpclientfactoryBy directly I mean without Asp.Net Core IoC/DI helpers. I didn't find docs about it and I think …
c# .net .net-core dotnet-httpclient httpclientfactoryI have created a simple console app that downloads a single (PDF) file from archive.org using the new ASP.…
c# asp.net-core asp.net-core-2.1 httpclientfactoryHow should I use HttpClientFactory to return an instance of HttpClient whose uri and credentials are determined at the point …
c# .net-core httpclientfactoryWith the new HttpClientFactory in ASP.NET Core 2.1, it's quite easy to configure custom HTTP clients with things like base …
c# asp.net-core-2.1 httpclientfactoryThere's a really cool IHttpClientFactory feature in the new ASP.NET Core 2.1 https://www.hanselman.com/blog/HttpClientFactoryForTypedHttpClientInstancesInASPNETCore21.aspx I'm …
c# asp.net-core .net-standard-2.0 httpclientfactoryI am using IHttpClientFactory for sending requests and receiving HTTP responses from two external APIs using Net Core 2.2. I am …
c# asp.net-core appsettings httpclientfactoryI want to add an HttClientHandler for a Typed HttpClient in order to include certificate authentication. All the examples I'm …
c# .net-core dotnet-httpclient .net-core-2.1 httpclientfactory