Grpc.Net.ClientFactory 2.67.0

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
Grpc.AspNetCore.Server.ClientFactory
HttpClientFactory integration the for gRPC .NET client when running in ASP.NET Core
631
Grpc.AspNetCore.Server.ClientFactory
HttpClientFactory integration the for gRPC .NET client when running in ASP.NET Core
392
Grpc.AspNetCore.Server.ClientFactory
HttpClientFactory integration the for gRPC .NET client when running in ASP.NET Core
315
Grpc.AspNetCore.Server.ClientFactory
HttpClientFactory integration the for gRPC .NET client when running in ASP.NET Core
179
Grpc.AspNetCore.Server.ClientFactory
HttpClientFactory integration the for gRPC .NET client when running in ASP.NET Core
125
Grpc.AspNetCore.Server.ClientFactory
HttpClientFactory integration the for gRPC .NET client when running in ASP.NET Core
96
Grpc.AspNetCore.Server.ClientFactory
HttpClientFactory integration the for gRPC .NET client when running in ASP.NET Core
81
Grpc.AspNetCore.Server.ClientFactory
HttpClientFactory integration the for gRPC .NET client when running in ASP.NET Core
64
Grpc.AspNetCore.Server.ClientFactory
HttpClientFactory integration the for gRPC .NET client when running in ASP.NET Core
61
Grpc.AspNetCore.Server.ClientFactory
HttpClientFactory integration the for gRPC .NET client when running in ASP.NET Core
44
Grpc.AspNetCore.Server.ClientFactory
HttpClientFactory integration the for gRPC .NET client when running in ASP.NET Core
30
Grpc.AspNetCore.Server.ClientFactory
HttpClientFactory integration the for gRPC .NET client when running in ASP.NET Core
29
Grpc.AspNetCore.Server.ClientFactory
HttpClientFactory integration the for gRPC .NET client when running in ASP.NET Core
28
Grpc.AspNetCore.Server.ClientFactory
HttpClientFactory integration the for gRPC .NET client when running in ASP.NET Core
27
Grpc.AspNetCore.Server.ClientFactory
HttpClientFactory integration the for gRPC .NET client when running in ASP.NET Core
26
Grpc.AspNetCore.Server.ClientFactory
HttpClientFactory integration the for gRPC .NET client when running in ASP.NET Core
25

.NET 6.0

.NET Standard 2.1

.NET Standard 2.0

.NET 8.0

.NET 7.0

Version Downloads Last updated
2.67.0 12 11/29/2024
2.67.0-pre1 13 10/22/2024
2.66.0 17 09/23/2024
2.66.0-pre1 13 09/09/2024
2.65.0 15 08/01/2024
2.65.0-pre1 19 07/26/2024
2.64.0 16 07/26/2024
2.64.0-pre1 16 07/26/2024
2.63.0 20 05/29/2024
2.63.0-pre1 18 05/23/2024
2.62.0 19 04/01/2024
2.62.0-pre1 19 03/09/2024
2.61.0 20 02/28/2024
2.61.0-pre1 20 03/01/2024
2.60.0 246 01/30/2024
2.60.0-pre1 21 01/08/2024
2.59.0 176 11/15/2023
2.59.0-pre1 21 01/10/2024
2.58.0 17 03/03/2024
2.58.0-pre1 24 10/11/2023
2.57.0 16 11/30/2023
2.57.0-pre1 20 12/05/2023
2.56.0 21 10/21/2023
2.56.0-pre2 42 08/25/2023
2.56.0-pre1 18 10/12/2023
2.55.0 24 09/22/2023
2.55.0-pre1 21 07/01/2023
2.54.0 28 11/23/2023
2.54.0-pre1 23 12/01/2023
2.53.0 22 11/29/2023
2.53.0-pre1 19 08/15/2023
2.52.0 28 09/14/2023
2.52.0-pre1 15 03/08/2024
2.51.0 22 10/06/2023
2.51.0-pre1 20 07/01/2023
2.50.0 532 12/14/2022
2.50.0-pre1 23 12/18/2023
2.49.0 476 12/14/2022
2.49.0-pre1 18 10/09/2023
2.48.0 19 06/04/2023
2.48.0-pre1 18 06/05/2023
2.47.0 18 12/26/2023
2.47.0-pre1 23 08/16/2023
2.46.0 385 07/09/2022
2.46.0-pre1 21 07/01/2023
2.45.0 26 10/01/2023
2.45.0-pre1 19 10/09/2023
2.44.0 22 11/07/2023
2.44.0-pre1 20 06/04/2023
2.43.0 22 06/06/2023
2.43.0-pre1 19 06/04/2023
2.42.0 19 12/18/2023
2.42.0-pre1 23 07/01/2023
2.41.0 23 06/15/2023
2.41.0-pre1 22 12/30/2023
2.40.0 983 11/12/2021
2.40.0-pre1 17 01/18/2024
2.39.0 65 09/16/2021
2.39.0-pre1 19 09/14/2023
2.38.0 102 07/16/2021
2.38.0-pre1 22 10/11/2023
2.37.0 85 05/24/2021
2.37.0-pre1 18 08/14/2023
2.36.0 51 03/19/2021
2.36.0-pre1 19 11/13/2023
2.35.0 32 03/03/2021
2.35.0-pre1 20 06/30/2023
2.34.0 63 01/13/2021
2.34.0-pre1 20 06/05/2023
2.33.1 26 12/16/2020
2.33.1-pre1 23 06/30/2023
2.32.0 122 08/02/2021
2.32.0-pre1 25 06/16/2023
2.31.0 28 11/18/2023
2.31.0-pre2 22 10/16/2023
2.30.0 20 11/07/2023
2.30.0-pre1 20 01/10/2024
2.29.0 19 08/19/2023
2.29.0-pre1 15 12/04/2023
2.28.0 25 11/13/2023
2.28.0-pre2 21 02/18/2024
2.28.0-pre1 17 02/04/2024
2.27.0 19 12/29/2023
2.27.0-pre1 16 01/21/2024
2.26.0 23 11/29/2023
2.26.0-pre1 18 03/08/2024
2.25.0 22 12/25/2023
2.25.0-pre1 21 10/16/2023
2.24.0 24 10/20/2023
2.24.0-pre1 19 10/10/2023
2.23.2 22 11/26/2023
0.2.23-pre2 20 01/06/2024
0.2.23-pre1 20 10/11/2023
0.1.22-pre3 21 12/03/2023
0.1.22-pre2 22 10/23/2023
0.1.22-pre1 20 10/13/2023
0.1.21-pre1 19 11/25/2023