Grpc.Net.ClientFactory 2.52.0

The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org. Prefix Reserved
.NET 5.0 .NET Standard 2.0
dotnet add package Grpc.Net.ClientFactory --version 2.52.0
NuGet\Install-Package Grpc.Net.ClientFactory -Version 2.52.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.52.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Grpc.Net.ClientFactory --version 2.52.0
#r "nuget: Grpc.Net.ClientFactory, 2.52.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.
// Install Grpc.Net.ClientFactory as a Cake Addin
#addin nuget:?package=Grpc.Net.ClientFactory&version=2.52.0

// Install Grpc.Net.ClientFactory as a Cake Tool
#tool nuget:?package=Grpc.Net.ClientFactory&version=2.52.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);
            }
        }
    }
}
Product Versions
.NET net5.0 net5.0-windows net6.0 net6.0-android net6.0-ios net6.0-maccatalyst net6.0-macos net6.0-tvos net6.0-windows net7.0 net7.0-android net7.0-ios net7.0-maccatalyst net7.0-macos net7.0-tvos net7.0-windows
.NET Core netcoreapp2.0 netcoreapp2.1 netcoreapp2.2 netcoreapp3.0 netcoreapp3.1
.NET Standard netstandard2.0 netstandard2.1
.NET Framework net461 net462 net463 net47 net471 net472 net48 net481
MonoAndroid monoandroid
MonoMac monomac
MonoTouch monotouch
Tizen tizen40 tizen60
Xamarin.iOS xamarinios
Xamarin.Mac xamarinmac
Xamarin.TVOS xamarintvos
Xamarin.WatchOS xamarinwatchos
Compatible target framework(s)
Additional computed target framework(s)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (98)

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

Package Downloads
Grpc.AspNetCore.Server.ClientFactory The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

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

Microsoft.Azure.Functions.Worker.Grpc The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

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

protobuf-net.Grpc.ClientFactory The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

Package Description

Sitko.Core.Grpc.Client

Sitko.Core is a set of libraries to help build .NET Core applications fast

devprime.stack.services

DevPrime Service

GitHub repositories (26)

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

Repository Stars
dotnet-architecture/eShopOnContainers
Cross-platform .NET sample microservices and container based application that runs on Linux Windows and macOS. Powered by .NET 7, Docker Containers and Azure Kubernetes Services. Supports Visual Studio, VS for Mac and CLI based environments with Docker CLI, dotnet CLI, VS Code or any other code editor.
dotnet/AspNetCore.Docs
Documentation for ASP.NET Core
grpc/grpc-dotnet
gRPC for .NET
AlphaYu/adnc
.NET6微服务/分布式开发框架,同时也适用于单体架构系统的开发。
dapr/dotnet-sdk
Dapr SDK for .NET
Version Downloads Last updated
2.52.0 81,183 3/15/2023
2.52.0-pre1 2,877 3/3/2023
2.51.0 1,062,567 1/2/2023
2.51.0-pre1 5,757 12/7/2022
2.50.0 671,786 11/17/2022
2.50.0-pre1 7,904 11/3/2022
2.49.0 2,732,897 9/26/2022
2.49.0-pre1 2,174 9/1/2022
2.48.0 747,713 8/24/2022
2.48.0-pre1 1,660 8/17/2022
2.47.0 1,179,471 7/3/2022
2.47.0-pre1 1,890 6/23/2022
2.46.0 1,731,077 5/13/2022
2.46.0-pre1 3,461 4/28/2022
2.45.0 1,060,898 4/19/2022
2.45.0-pre1 7,180 4/7/2022
2.44.0 985,435 3/17/2022
2.44.0-pre1 18,707 3/9/2022
2.43.0 599,006 2/25/2022
2.43.0-pre1 7,978 1/28/2022
2.42.0 1,572,132 1/19/2022
2.42.0-pre1 7,538 12/30/2021
2.41.0 1,191,491 12/7/2021
2.41.0-pre1 17,219 11/12/2021
2.40.0 3,032,326 10/5/2021
2.40.0-pre1 3,592 9/9/2021
2.39.0 1,132,011 8/18/2021
2.39.0-pre1 4,855 8/6/2021
2.38.0 1,675,129 6/11/2021
2.38.0-pre1 855 6/4/2021
2.37.0 5,286,249 4/20/2021
2.37.0-pre1 469 4/14/2021
2.36.0 964,077 3/17/2021
2.36.0-pre1 959 3/9/2021
2.35.0 1,203,578 2/4/2021
2.35.0-pre1 1,450 1/26/2021
2.34.0 1,812,670 12/11/2020
2.34.0-pre1 2,983 12/1/2020
2.33.1 1,091,466 10/28/2020
2.33.1-pre1 757 10/22/2020
2.32.0 1,281,916 10/5/2020
2.32.0-pre1 13,280 9/8/2020
2.31.0 822,425 8/14/2020
2.31.0-pre2 872 8/3/2020
2.30.0 350,843 7/16/2020
2.30.0-pre1 3,331 6/17/2020
2.29.0 534,604 5/27/2020
2.29.0-pre1 4,406 5/15/2020
2.28.0 559,184 4/9/2020
2.28.0-pre2 16,446 3/11/2020
2.28.0-pre1 6,273 3/3/2020
2.27.0 1,409,330 2/7/2020
2.27.0-pre1 23,472 1/24/2020
2.26.0 1,514,047 12/19/2019
2.26.0-pre1 740 12/10/2019
2.25.0 1,020,194 11/7/2019
2.25.0-pre1 675 11/1/2019
2.24.0 294,491 10/21/2019
2.24.0-pre1 1,079 10/9/2019
2.23.2 489,334 9/20/2019
0.2.23-pre2 9,170 9/6/2019
0.2.23-pre1 10,663 8/21/2019
0.1.22-pre3 6,294 7/30/2019
0.1.22-pre2 11,186 7/2/2019
0.1.22-pre1 2,038 6/17/2019
0.1.21-pre1 1,133 6/4/2019