DEV Community

Cover image for How to solve InvalidOperationException for constructors using HttpClientFactory in C#
Davide Bellone
Davide Bellone

Posted on • Originally published at code4it.dev

How to solve InvalidOperationException for constructors using HttpClientFactory in C#

A few days ago I was preparing the demo for a new article. The demo included a class with an IHttpClientFactory service injected into the constructor. Nothing more.

Then, running the application (well, actually, executing the code), this error popped out:

System.InvalidOperationException: A suitable constructor for type 'X' could not be located. Ensure the type is concrete and all parameters of a public constructor are either registered as services or passed as arguments. Also ensure no extraneous arguments are provided.

How to solve it? It's easy. But first, let me show you what I did in the wrong version.

Setting up the wrong example

For this example, I created an elementary project.
It's a .NET 7 API project, with only one controller, GenderController, which calls another service defined in the IGenderizeService interface.

public interface IGenderizeService
{
    Task<GenderProbability> GetGenderProbabiliy(string name);
}
Enter fullscreen mode Exit fullscreen mode

IGenderizeService is implemented by a class, GenderizeService, which is the one that fails to load and, therefore, causes the exception to be thrown. The class calls an external endpoint, parses the result, and then returns it to the caller:

public class GenderizeService : IGenderizeService
{
    private readonly IHttpClientFactory _httpClientFactory;

    public GenderizeService(IHttpClientFactory httpClientFactory)
    {
        _httpClientFactory = httpClientFactory;
    }

    public async Task<GenderProbability> GetGenderProbabiliy(string name)
    {
        var httpClient = _httpClientFactory.CreateClient();

        var response = await httpClient.GetAsync($"?name={name}");

        var result = await response.Content.ReadFromJsonAsync<GenderProbability>();

        return result;
    }
}
Enter fullscreen mode Exit fullscreen mode

Finally, I've defined the services in the Program class, and then I've specified which is the base URL for the HttpClient instance generated in the GenderizeService class:

// some code

builder.Services.AddScoped<IGenderizeService, GenderizeService>();

builder.Services.AddHttpClient<IGenderizeService, GenderizeService>(
    client => client.BaseAddress = new Uri("https://api.genderize.io/")
    );

var app = builder.Build();

// some more code
Enter fullscreen mode Exit fullscreen mode

That's it! Can you spot the error?

2 ways to solve the error

The error was quite simple, but it took me a while to spot:

In the constructor I was injecting an IHttpClientFactory:

public GenderizeService(IHttpClientFactory httpClientFactory)
Enter fullscreen mode Exit fullscreen mode

while in the host definition I was declaring an HttpClient for a specific class:

builder.Services.AddHttpClient<IGenderizeService, GenderizeService>
Enter fullscreen mode Exit fullscreen mode

Apparently, even if we've specified how to create an instance for a specific class, we could not build it using an IHttpClientFactory.

So, here are 2 ways to solve it.

Use named HttpClient in HttpClientFactory

Named HttpClients are a helpful way to define a specific HttpClient and use it across different services.

It's as simple as assigning a name to an HttpClient instance and then using the same name when you need that specific client.

So, define it in the Startup method:

builder.Services.AddHttpClient("genderize",
            client => client.BaseAddress = new Uri("https://api.genderize.io/")
        );
Enter fullscreen mode Exit fullscreen mode

and retrieve it using CreateClient:

public GenderizeService(IHttpClientFactory httpClientFactory)
{
    _httpClientFactory = httpClientFactory;
}

public async Task<GenderProbability> GetGenderProbabiliy(string name)
{
    var httpClient = _httpClientFactory.CreateClient("genderize");

    var response = await httpClient.GetAsync($"?name={name}");

    var result = await response.Content.ReadFromJsonAsync<GenderProbability>();

    return result;
}
Enter fullscreen mode Exit fullscreen mode

💡 Quick tip: define the HttpClient names in a constant field shared across the whole system!

Inject HttpClient instead of IHttpClientFactory

The other way is by injecting an HttpClient instance instead of an IHttpClientFactory.

So we can restore the previous version of the Startup part:

builder.Services.AddHttpClient<IGenderizeService, GenderizeService>(
            client => client.BaseAddress = new Uri("https://api.genderize.io/")
        );
Enter fullscreen mode Exit fullscreen mode

and, instead of injecting an IHttpClientFactory, we can directly inject an HttpClient instance:

public class GenderizeService : IGenderizeService
{
    private readonly HttpClient _httpClient;

    public GenderizeService(HttpClient httpClient)
    {
        _httpClient = httpClient;
    }

    public async Task<GenderProbability> GetGenderProbabiliy(string name)
    {
        //var httpClient = _httpClientFactory.CreateClient("genderize");

        var response = await _httpClient.GetAsync($"?name={name}");

        var result = await response.Content.ReadFromJsonAsync<GenderProbability>();

        return result;
    }
}
Enter fullscreen mode Exit fullscreen mode

We no longer need to call _httpClientFactory.CreateClient because the injected instance of HttpClient is already customized with the settings we've defined at Startup.

Further readings

I've briefly talked about HttpClientFactory in one article of my C# tips series:

🔗 C# Tip: use IHttpClientFactory to generate HttpClient instance | Code4IT

And, more in detail, I've also talked about one way to mock HttpClientFactory instances in unit tests using Moq:

🔗 How to test HttpClientFactory with Moq | Code4IT

Finally, why do we need to use HttpClientFactories instead of HttpClients?

🔗 Use IHttpClientFactory to implement resilient HTTP requests | Microsoft Docs

Wrapping up

Yes, it was that easy!

We received the error message

A suitable constructor for type 'X' could not be located.

because we were mixing two ways to customize and use HttpClient instances.

But we've only opened Pandora's box: we will come back to this topic soon!

For now, Happy coding!

🐧

Top comments (0)