Grpc.Net.ClientFactory 2.70.0

Prefix Reserved
dotnet add package Grpc.Net.ClientFactory --version 2.70.0
                    
NuGet\Install-Package Grpc.Net.ClientFactory -Version 2.70.0
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Grpc.Net.ClientFactory" Version="2.70.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Grpc.Net.ClientFactory" Version="2.70.0" />
                    
Directory.Packages.props
<PackageReference Include="Grpc.Net.ClientFactory" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Grpc.Net.ClientFactory --version 2.70.0
                    
#r "nuget: Grpc.Net.ClientFactory, 2.70.0"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#addin nuget:?package=Grpc.Net.ClientFactory&version=2.70.0
                    
Install Grpc.Net.ClientFactory as a Cake Addin
#tool nuget:?package=Grpc.Net.ClientFactory&version=2.70.0
                    
Install Grpc.Net.ClientFactory as a Cake Tool

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);
            }
        }
    }
}
Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 is compatible.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 is compatible. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (226)

Showing the top 5 NuGet packages that depend on Grpc.Net.ClientFactory:

Package Downloads
Grpc.AspNetCore.Server.ClientFactory

HttpClientFactory integration the for gRPC .NET client when running in ASP.NET Core

Microsoft.Azure.Functions.Worker.Grpc

This library provides gRPC support for Azure Functions .NET Worker communication with the Azure Functions Host.

CouchbaseNetClient

The Official Couchbase .NET SDK.

Microsoft.Azure.Functions.Worker.Extensions.Rpc

Contains types to facilitate RPC communication between a worker extension and the functions host.

Aspire.Hosting

Core abstractions for the .NET Aspire application model.

GitHub repositories (36)

Showing the top 20 popular GitHub repositories that depend on Grpc.Net.ClientFactory:

Repository Stars
dotnet/AspNetCore.Docs
Documentation for ASP.NET Core
dotnet/eShop
A reference .NET application implementing an eCommerce site
dotnet/aspire
Tools, templates, and packages to accelerate building observable, production-ready apps
grpc/grpc-dotnet
gRPC for .NET
sipsorcery-org/sipsorcery
A WebRTC, SIP and VoIP library for C# and .NET. Designed for real-time communications apps.
AlphaYu/adnc
.NET微服务/分布式开发框架,同时也适用于单体架构系统的开发。
dapr/dotnet-sdk
Dapr SDK for .NET
desenvolvedor-io/dev-store
A microservices e-commerce reference application built with ASP.NET 6
meysamhadeli/monolith-to-cloud-architecture
A practical architecture styles for migrating from monolith to modern cloud native application with the latest technologies and architectures like Vertical Slice Architecture, Event Sourcing, CQRS, DDD, gRpc, MongoDB, RabbitMq, and Masstransit in .Net 9.
dotnet/aspire-samples
protobuf-net/protobuf-net.Grpc
GRPC bindings for protobuf-net and grpc-dotnet
abpframework/eShopOnAbp
Reference microservice solution built with the ABP Framework and .NET, runs on Kubernetes with Helm configuration, includes API Gateways, Angular and ASP.NET Core MVC applications, PostgreSQL and MongoDB databases
csharpfritz/csharp_with_csharpfritz
Show notes, slides, and samples from the CSharp with CSharpFritz show
microsoft/RockPaperScissorsLizardSpock
Rock, Paper, Scissors, Lizard, Spock - Sample Application
elastic/apm-agent-dotnet
dotnet/dotnet
Home of .NET's Virtual Monolithic Repository which includes all the code needed to build the .NET SDK.
ardalis/DesignPatternsInCSharp
Samples associated with Pluralsight design patterns in c# courses.
Azure/azure-functions-dotnet-worker
Azure Functions out-of-process .NET language worker
ChromaControl/ChromaControl
3rd party device lighting support for Razer Synapse.
AntonioFalcaoJr/EventualShop
A state-of-the-art distributed system using Reactive DDD as uncertainty modeling, Event Storming as subdomain decomposition, Event Sourcing as an eventual persistence mechanism, CQRS, Async Projections, Microservices for individual deployable units, Event-driven Architecture for efficient integration, and Clean Architecture as domain-centric design
Version Downloads Last updated
2.70.0 383,174 3/10/2025
2.70.0-pre1 1,408 2/26/2025
2.67.0 2,995,407 11/21/2024
2.67.0-pre1 11,661 10/22/2024
2.66.0 4,278,652 9/20/2024
2.66.0-pre1 5,026 9/6/2024
2.65.0 7,080,029 7/27/2024
2.65.0-pre1 899 7/20/2024
2.64.0 397,975 7/19/2024
2.64.0-pre1 11,992 7/15/2024
2.63.0 3,240,087 5/24/2024
2.63.0-pre1 21,621 5/8/2024
2.62.0 3,047,671 3/29/2024
2.62.0-pre1 4,718 3/8/2024
2.61.0 2,929,097 2/22/2024
2.61.0-pre1 11,435 2/8/2024
2.60.0 18,891,976 1/3/2024
2.60.0-pre1 16,109 12/14/2023
2.59.0 4,338,366 11/8/2023
2.59.0-pre1 8,229 10/27/2023
2.58.0 1,171,638 10/19/2023
2.58.0-pre1 32,195 10/9/2023
2.57.0 3,356,733 9/6/2023
2.57.0-pre1 4,670 8/31/2023
2.56.0 554,478 8/25/2023
2.56.0-pre2 4,519 8/16/2023
2.56.0-pre1 22,205 8/3/2023
2.55.0 18,904,705 7/4/2023
2.55.0-pre1 5,306 6/23/2023
2.54.0 1,417,128 6/15/2023
2.54.0-pre1 11,718 5/25/2023
2.53.0 2,833,240 5/5/2023
2.53.0-pre1 18,810 4/12/2023
2.52.0 3,145,883 3/15/2023
2.52.0-pre1 8,145 3/3/2023
2.51.0 6,610,560 1/2/2023
2.51.0-pre1 7,194 12/7/2022
2.50.0 3,056,082 11/17/2022
2.50.0-pre1 25,741 11/3/2022
2.49.0 22,847,410 9/26/2022
2.49.0-pre1 3,809 9/1/2022
2.48.0 2,100,657 8/24/2022
2.48.0-pre1 2,797 8/17/2022
2.47.0 3,305,124 7/3/2022
2.47.0-pre1 3,194 6/23/2022
2.46.0 3,313,832 5/13/2022
2.46.0-pre1 7,814 4/28/2022
2.45.0 1,916,144 4/19/2022
2.45.0-pre1 12,697 4/7/2022
2.44.0 1,839,258 3/17/2022
2.44.0-pre1 19,827 3/9/2022
2.43.0 1,419,730 2/25/2022
2.43.0-pre1 10,752 1/28/2022
2.42.0 3,508,847 1/19/2022
2.42.0-pre1 10,150 12/30/2021
2.41.0 1,653,164 12/7/2021
2.41.0-pre1 20,913 11/12/2021
2.40.0 5,897,680 10/5/2021
2.40.0-pre1 4,626 9/9/2021
2.39.0 1,630,444 8/18/2021
2.39.0-pre1 5,809 8/6/2021
2.38.0 2,218,405 6/11/2021
2.38.0-pre1 1,846 6/4/2021
2.37.0 8,223,823 4/20/2021
2.37.0-pre1 1,437 4/14/2021
2.36.0 1,281,325 3/17/2021
2.36.0-pre1 1,842 3/9/2021
2.35.0 1,423,707 2/4/2021
2.35.0-pre1 2,404 1/26/2021
2.34.0 2,130,342 12/11/2020
2.34.0-pre1 3,950 12/1/2020
2.33.1 1,300,674 10/28/2020
2.33.1-pre1 1,696 10/22/2020
2.32.0 1,857,054 10/5/2020
2.32.0-pre1 14,345 9/8/2020
2.31.0 1,011,689 8/14/2020
2.31.0-pre2 1,849 8/3/2020
2.30.0 444,191 7/16/2020
2.30.0-pre1 4,357 6/17/2020
2.29.0 647,913 5/27/2020
2.29.0-pre1 6,493 5/15/2020
2.28.0 719,884 4/9/2020
2.28.0-pre2 17,418 3/11/2020
2.28.0-pre1 7,522 3/3/2020
2.27.0 1,634,767 2/7/2020
2.27.0-pre1 24,786 1/24/2020
2.26.0 1,543,612 12/19/2019
2.26.0-pre1 1,639 12/10/2019
2.25.0 1,033,423 11/7/2019
2.25.0-pre1 1,630 11/1/2019
2.24.0 332,912 10/21/2019
2.24.0-pre1 2,056 10/9/2019
2.23.2 695,768 9/20/2019
0.2.23-pre2 10,226 9/6/2019
0.2.23-pre1 13,375 8/21/2019
0.1.22-pre3 7,756 7/30/2019
0.1.22-pre2 12,536 7/2/2019
0.1.22-pre1 2,896 6/17/2019
0.1.21-pre1 2,024 6/4/2019