Grpc.Net.ClientFactory 2.76.0-pre1

Grpc.Net.ClientFactory

gRPC integration with HttpClientFactory offers a centralized way to create gRPC clients. It can be used as an alternative to configuring stand-alone gRPC client instances.

The factory offers the following benefits:

  • Provides a central location for configuring logical gRPC client instances
  • Manages the lifetime of the underlying HttpClientMessageHandler
  • Automatic propagation of deadline and cancellation in an ASP.NET Core gRPC service

Register gRPC clients

To register a gRPC client, the generic AddGrpcClient extension method can be used within Startup.ConfigureServices, specifying the gRPC typed client class and service address:

services.AddGrpcClient<Greeter.GreeterClient>(o =>
{
    o.Address = new Uri("https://localhost:5001");
});

The gRPC client type is registered as transient with dependency injection (DI). The client can now be injected and consumed directly in types created by DI. ASP.NET Core MVC controllers, SignalR hubs and gRPC services are places where gRPC clients can automatically be injected:

public class AggregatorService : Aggregator.AggregatorBase
{
    private readonly Greeter.GreeterClient _client;

    public AggregatorService(Greeter.GreeterClient client)
    {
        _client = client;
    }

    public override async Task SayHellos(HelloRequest request,
        IServerStreamWriter<HelloReply> responseStream, ServerCallContext context)
    {
        // Forward the call on to the greeter service
        using (var call = _client.SayHellos(request))
        {
            await foreach (var response in call.ResponseStream.ReadAllAsync())
            {
                await responseStream.WriteAsync(response);
            }
        }
    }
}

Showing the top 20 packages that depend on Grpc.Net.ClientFactory.

Packages Downloads
Aspire.Hosting.AppHost
Core library and MSBuild logic for .NET Aspire AppHost projects.
30
Aspire.Hosting.SqlServer
Microsoft SQL Server support for .NET Aspire.
29
Aspire.Hosting.PostgreSQL
PostgreSQL® support for .NET Aspire.
28
Aspire.Hosting.SqlServer
Microsoft SQL Server support for .NET Aspire.
28
Aspire.Hosting
Core abstractions for the .NET Aspire application model.
27
Aspire.Hosting.AppHost
Core library and MSBuild logic for .NET Aspire AppHost projects.
27
Aspire.Hosting.SqlServer
Microsoft SQL Server support for .NET Aspire.
27
Grpc.AspNetCore.Server.ClientFactory
HttpClientFactory integration the for gRPC .NET client when running in ASP.NET Core
26
Aspire.Hosting.PostgreSQL
PostgreSQL® support for .NET Aspire.
26
Aspire.Hosting.SqlServer
Microsoft SQL Server support for .NET Aspire.
26

.NET 8.0

.NET Standard 2.1

.NET Standard 2.0

.NET 10.0

.NET 9.0

Version Downloads Last updated
2.76.0-pre1 5 11/16/2025
2.71.0 26 06/04/2025
2.71.0-pre1 21 06/05/2025
2.70.0 22 06/04/2025
2.70.0-pre1 21 06/04/2025
2.67.0 20 06/04/2025
2.67.0-pre1 20 06/04/2025
2.66.0 21 06/04/2025
2.66.0-pre1 20 06/04/2025
2.65.0 19 06/04/2025
2.65.0-pre1 16 06/04/2025
2.64.0 21 06/04/2025
2.64.0-pre1 21 06/04/2025
2.63.0 22 06/04/2025
2.63.0-pre1 22 06/05/2025
2.62.0 24 06/04/2025
2.62.0-pre1 18 06/04/2025
2.61.0 21 06/04/2025
2.61.0-pre1 20 06/04/2025
2.60.0 21 06/04/2025
2.60.0-pre1 17 06/04/2025
2.59.0 21 06/04/2025
2.59.0-pre1 18 06/04/2025
2.58.0 22 06/04/2025
2.58.0-pre1 18 06/04/2025
2.57.0 20 06/10/2025
2.57.0-pre1 22 06/04/2025
2.56.0 21 06/04/2025
2.56.0-pre2 19 06/04/2025
2.56.0-pre1 18 06/04/2025
2.55.0 20 06/04/2025
2.55.0-pre1 19 06/04/2025
2.54.0 22 06/04/2025
2.54.0-pre1 17 06/04/2025
2.53.0 21 06/04/2025
2.53.0-pre1 20 06/04/2025
2.52.0 21 06/04/2025
2.52.0-pre1 18 06/04/2025
2.51.0 20 06/04/2025
2.51.0-pre1 20 06/04/2025
2.50.0 18 06/04/2025
2.50.0-pre1 23 06/04/2025
2.49.0 21 06/04/2025
2.49.0-pre1 21 06/04/2025
2.48.0 21 06/04/2025
2.48.0-pre1 18 06/04/2025
2.47.0 21 06/04/2025
2.47.0-pre1 20 06/04/2025
2.46.0 22 06/04/2025
2.46.0-pre1 21 06/04/2025
2.45.0 21 06/04/2025
2.45.0-pre1 21 06/04/2025
2.44.0 21 06/04/2025
2.44.0-pre1 20 06/10/2025
2.43.0 23 06/04/2025
2.43.0-pre1 18 06/04/2025
2.42.0 20 06/04/2025
2.42.0-pre1 19 06/04/2025
2.41.0 23 06/04/2025
2.41.0-pre1 21 06/04/2025
2.40.0 23 06/04/2025
2.40.0-pre1 17 06/04/2025
2.39.0 20 06/04/2025
2.39.0-pre1 20 06/04/2025
2.38.0 22 06/04/2025
2.38.0-pre1 21 06/04/2025
2.37.0 21 06/04/2025
2.37.0-pre1 19 06/04/2025
2.36.0 23 06/10/2025
2.36.0-pre1 17 06/04/2025
2.35.0 23 06/04/2025
2.35.0-pre1 20 06/04/2025
2.34.0 22 06/04/2025
2.34.0-pre1 23 06/04/2025
2.33.1 22 06/04/2025
2.33.1-pre1 22 06/10/2025
2.32.0 22 06/04/2025
2.32.0-pre1 17 06/04/2025
2.31.0 21 06/05/2025
2.31.0-pre2 22 06/04/2025
2.30.0 19 06/04/2025
2.30.0-pre1 21 06/04/2025
2.29.0 20 06/04/2025
2.29.0-pre1 17 06/04/2025
2.28.0 19 06/04/2025
2.28.0-pre2 23 06/04/2025
2.28.0-pre1 22 06/05/2025
2.27.0 21 06/04/2025
2.27.0-pre1 17 06/05/2025
2.26.0 21 06/04/2025
2.26.0-pre1 22 06/04/2025
2.25.0 21 06/04/2025
2.25.0-pre1 19 06/05/2025
2.24.0 23 06/04/2025
2.24.0-pre1 20 06/04/2025
2.23.2 21 06/04/2025
0.2.23-pre2 20 06/04/2025
0.2.23-pre1 22 06/04/2025
0.1.22-pre3 21 06/04/2025
0.1.22-pre2 20 06/04/2025
0.1.22-pre1 22 06/04/2025
0.1.21-pre1 21 06/04/2025