Grpc.Net.ClientFactory 2.43.0

The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org. Prefix Reserved
There is a newer version of this package available.
See the version list below for details.
dotnet add package Grpc.Net.ClientFactory --version 2.43.0
NuGet\Install-Package Grpc.Net.ClientFactory -Version 2.43.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.43.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.43.0
#r "nuget: Grpc.Net.ClientFactory, 2.43.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.43.0

// Install Grpc.Net.ClientFactory as a Cake Tool
#tool nuget:?package=Grpc.Net.ClientFactory&version=2.43.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 Compatible and additional computed target framework versions.
.NET net5.0 is compatible.  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 was computed.  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 was computed.  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. 
.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 (139)

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.

CouchbaseNetClient

The Official Couchbase .NET SDK.

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

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

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

GitHub repositories (32)

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

Repository Stars
dotnet/AspNetCore.Docs
Documentation for ASP.NET Core
grpc/grpc-dotnet
gRPC for .NET
dotnet/aspire
An opinionated, cloud ready stack for building observable, production ready, distributed applications in .NET
AlphaYu/adnc
.NET微服务/分布式开发框架,同时也适用于单体架构系统的开发。
dapr/dotnet-sdk
Dapr SDK for .NET
Version Downloads Last updated
2.62.0 121,118 3/29/2024
2.62.0-pre1 1,553 3/8/2024
2.61.0 674,372 2/22/2024
2.61.0-pre1 9,506 2/8/2024
2.60.0 2,177,002 1/3/2024
2.60.0-pre1 9,494 12/14/2023
2.59.0 1,857,214 11/8/2023
2.59.0-pre1 6,188 10/27/2023
2.58.0 580,325 10/19/2023
2.58.0-pre1 29,388 10/9/2023
2.57.0 1,599,454 9/6/2023
2.57.0-pre1 4,516 8/31/2023
2.56.0 385,012 8/25/2023
2.56.0-pre2 4,283 8/16/2023
2.56.0-pre1 7,882 8/3/2023
2.55.0 6,676,526 7/4/2023
2.55.0-pre1 4,936 6/23/2023
2.54.0 1,138,194 6/15/2023
2.54.0-pre1 10,405 5/25/2023
2.53.0 2,154,276 5/5/2023
2.53.0-pre1 10,181 4/12/2023
2.52.0 2,210,155 3/15/2023
2.52.0-pre1 7,490 3/3/2023
2.51.0 4,410,538 1/2/2023
2.51.0-pre1 6,939 12/7/2022
2.50.0 1,838,639 11/17/2022
2.50.0-pre1 16,729 11/3/2022
2.49.0 10,423,819 9/26/2022
2.49.0-pre1 3,516 9/1/2022
2.48.0 1,255,625 8/24/2022
2.48.0-pre1 2,590 8/17/2022
2.47.0 2,419,410 7/3/2022
2.47.0-pre1 2,934 6/23/2022
2.46.0 2,827,166 5/13/2022
2.46.0-pre1 6,017 4/28/2022
2.45.0 1,723,813 4/19/2022
2.45.0-pre1 12,341 4/7/2022
2.44.0 1,510,386 3/17/2022
2.44.0-pre1 19,585 3/9/2022
2.43.0 1,011,518 2/25/2022
2.43.0-pre1 10,351 1/28/2022
2.42.0 2,583,419 1/19/2022
2.42.0-pre1 9,273 12/30/2021
2.41.0 1,513,680 12/7/2021
2.41.0-pre1 19,647 11/12/2021
2.40.0 4,924,529 10/5/2021
2.40.0-pre1 4,442 9/9/2021
2.39.0 1,501,984 8/18/2021
2.39.0-pre1 5,591 8/6/2021
2.38.0 2,007,748 6/11/2021
2.38.0-pre1 1,686 6/4/2021
2.37.0 7,227,796 4/20/2021
2.37.0-pre1 1,265 4/14/2021
2.36.0 1,163,946 3/17/2021
2.36.0-pre1 1,662 3/9/2021
2.35.0 1,345,638 2/4/2021
2.35.0-pre1 2,229 1/26/2021
2.34.0 2,027,224 12/11/2020
2.34.0-pre1 3,760 12/1/2020
2.33.1 1,215,612 10/28/2020
2.33.1-pre1 1,517 10/22/2020
2.32.0 1,678,340 10/5/2020
2.32.0-pre1 14,101 9/8/2020
2.31.0 969,085 8/14/2020
2.31.0-pre2 1,677 8/3/2020
2.30.0 398,676 7/16/2020
2.30.0-pre1 4,166 6/17/2020
2.29.0 595,011 5/27/2020
2.29.0-pre1 5,772 5/15/2020
2.28.0 682,537 4/9/2020
2.28.0-pre2 17,231 3/11/2020
2.28.0-pre1 7,186 3/3/2020
2.27.0 1,550,967 2/7/2020
2.27.0-pre1 24,582 1/24/2020
2.26.0 1,534,016 12/19/2019
2.26.0-pre1 1,455 12/10/2019
2.25.0 1,029,092 11/7/2019
2.25.0-pre1 1,448 11/1/2019
2.24.0 321,170 10/21/2019
2.24.0-pre1 1,862 10/9/2019
2.23.2 596,338 9/20/2019
0.2.23-pre2 10,051 9/6/2019
0.2.23-pre1 13,115 8/21/2019
0.1.22-pre3 7,173 7/30/2019
0.1.22-pre2 12,073 7/2/2019
0.1.22-pre1 2,714 6/17/2019
0.1.21-pre1 1,852 6/4/2019