Grpc.Net.Client 2.61.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 prerelease version of this package available.
See the version list below for details.
dotnet add package Grpc.Net.Client --version 2.61.0
NuGet\Install-Package Grpc.Net.Client -Version 2.61.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.Client" Version="2.61.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Grpc.Net.Client --version 2.61.0
#r "nuget: Grpc.Net.Client, 2.61.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.Client as a Cake Addin
#addin nuget:?package=Grpc.Net.Client&version=2.61.0

// Install Grpc.Net.Client as a Cake Tool
#tool nuget:?package=Grpc.Net.Client&version=2.61.0

Grpc.Net.Client

Grpc.Net.Client is a gRPC client library for .NET.

Configure gRPC client

gRPC clients are concrete client types that are generated from .proto files. The concrete gRPC client has methods that translate to the gRPC service in the .proto file. For example, a service called Greeter generates a GreeterClient type with methods to call the service.

A gRPC client is created from a channel. Start by using GrpcChannel.ForAddress to create a channel, and then use the channel to create a gRPC client:

var channel = GrpcChannel.ForAddress("https://localhost:5001");
var client = new Greet.GreeterClient(channel);

A channel represents a long-lived connection to a gRPC service. When a channel is created, it's configured with options related to calling a service. For example, the HttpClient used to make calls, the maximum send and receive message size, and logging can be specified on GrpcChannelOptions and used with GrpcChannel.ForAddress. For a complete list of options, see client configuration options.

var channel = GrpcChannel.ForAddress("https://localhost:5001");

var greeterClient = new Greet.GreeterClient(channel);
var counterClient = new Count.CounterClient(channel);

// Use clients to call gRPC services

Make gRPC calls

A gRPC call is initiated by calling a method on the client. The gRPC client will handle message serialization and addressing the gRPC call to the correct service.

gRPC has different types of methods. How the client is used to make a gRPC call depends on the type of method called. The gRPC method types are:

  • Unary
  • Server streaming
  • Client streaming
  • Bi-directional streaming

Unary call

A unary call starts with the client sending a request message. A response message is returned when the service finishes.

var client = new Greet.GreeterClient(channel);
var response = await client.SayHelloAsync(new HelloRequest { Name = "World" });

Console.WriteLine("Greeting: " + response.Message);
// Greeting: Hello World

Each unary service method in the .proto file will result in two .NET methods on the concrete gRPC client type for calling the method: an asynchronous method and a blocking method. For example, on GreeterClient there are two ways of calling SayHello:

  • GreeterClient.SayHelloAsync - calls Greeter.SayHello service asynchronously. Can be awaited.
  • GreeterClient.SayHello - calls Greeter.SayHello service and blocks until complete. Don't use in asynchronous code.

Server streaming call

A server streaming call starts with the client sending a request message. ResponseStream.MoveNext() reads messages streamed from the service. The server streaming call is complete when ResponseStream.MoveNext() returns false.

var client = new Greet.GreeterClient(channel);
using var call = client.SayHellos(new HelloRequest { Name = "World" });

while (await call.ResponseStream.MoveNext())
{
    Console.WriteLine("Greeting: " + call.ResponseStream.Current.Message);
    // "Greeting: Hello World" is written multiple times
}

When using C# 8 or later, the await foreach syntax can be used to read messages. The IAsyncStreamReader<T>.ReadAllAsync() extension method reads all messages from the response stream:

var client = new Greet.GreeterClient(channel);
using var call = client.SayHellos(new HelloRequest { Name = "World" });

await foreach (var response in call.ResponseStream.ReadAllAsync())
{
    Console.WriteLine("Greeting: " + response.Message);
    // "Greeting: Hello World" is written multiple times
}

Client streaming call

A client streaming call starts without the client sending a message. The client can choose to send messages with RequestStream.WriteAsync. When the client has finished sending messages, RequestStream.CompleteAsync() should be called to notify the service. The call is finished when the service returns a response message.

var client = new Counter.CounterClient(channel);
using var call = client.AccumulateCount();

for (var i = 0; i < 3; i++)
{
    await call.RequestStream.WriteAsync(new CounterRequest { Count = 1 });
}
await call.RequestStream.CompleteAsync();

var response = await call;
Console.WriteLine($"Count: {response.Count}");
// Count: 3

Bi-directional streaming call

A bi-directional streaming call starts without the client sending a message. The client can choose to send messages with RequestStream.WriteAsync. Messages streamed from the service are accessible with ResponseStream.MoveNext() or ResponseStream.ReadAllAsync(). The bi-directional streaming call is complete when the ResponseStream has no more messages.

var client = new Echo.EchoClient(channel);
using var call = client.Echo();

Console.WriteLine("Starting background task to receive messages");
var readTask = Task.Run(async () =>
{
    await foreach (var response in call.ResponseStream.ReadAllAsync())
    {
        Console.WriteLine(response.Message);
        // Echo messages sent to the service
    }
});

Console.WriteLine("Starting to send messages");
Console.WriteLine("Type a message to echo then press enter.");
while (true)
{
    var result = Console.ReadLine();
    if (string.IsNullOrEmpty(result))
    {
        break;
    }

    await call.RequestStream.WriteAsync(new EchoMessage { Message = result });
}

Console.WriteLine("Disconnecting");
await call.RequestStream.CompleteAsync();
await readTask;

For best performance, and to avoid unnecessary errors in the client and service, try to complete bi-directional streaming calls gracefully. A bi-directional call completes gracefully when the server has finished reading the request stream and the client has finished reading the response stream. The preceding sample call is one example of a bi-directional call that ends gracefully. In the call, the client:

  1. Starts a new bi-directional streaming call by calling EchoClient.Echo.
  2. Creates a background task to read messages from the service using ResponseStream.ReadAllAsync().
  3. Sends messages to the server with RequestStream.WriteAsync.
  4. Notifies the server it has finished sending messages with RequestStream.CompleteAsync().
  5. Waits until the background task has read all incoming messages.

During a bi-directional streaming call, the client and service can send messages to each other at any time. The best client logic for interacting with a bi-directional call varies depending upon the service logic.

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. 
.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 is compatible.  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 (635)

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

Package Downloads
Grpc.Net.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

Google.Api.Gax.Grpc The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

Additional support classes for Google gRPC API client libraries

OpenTelemetry.Exporter.OpenTelemetryProtocol The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

OpenTelemetry protocol exporter for OpenTelemetry .NET

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.

GitHub repositories (78)

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

Repository Stars
2dust/v2rayN
A GUI client for Windows, support Xray core and v2fly core and others
microsoft/semantic-kernel
Integrate cutting-edge LLM technology quickly and easily into your apps
dotnet/runtime
.NET is a cross-platform runtime for cloud, mobile, desktop, and IoT apps.
dotnet/AspNetCore.Docs
Documentation for ASP.NET Core
dodyg/practical-aspnetcore
Practical samples of ASP.NET Core 8.0, 7.0, 6.0, 5.0, 3.1, 2.2, and 2.1,projects you can use. Readme contains explanations on all projects.
Version Downloads Last updated
2.62.0-pre1 789 3/8/2024
2.61.0 334,615 2/22/2024
2.61.0-pre1 9,359 2/8/2024
2.60.0 1,978,274 1/3/2024
2.60.0-pre1 12,028 12/14/2023
2.59.0 2,193,097 11/8/2023
2.59.0-pre1 6,557 10/27/2023
2.58.0 784,804 10/19/2023
2.58.0-pre1 29,706 10/9/2023
2.57.0 1,972,394 9/6/2023
2.57.0-pre1 5,190 8/31/2023
2.56.0 685,681 8/25/2023
2.56.0-pre2 6,661 8/16/2023
2.56.0-pre1 14,406 8/3/2023
2.55.0 7,976,672 7/4/2023
2.55.0-pre1 9,394 6/23/2023
2.54.0 1,364,000 6/15/2023
2.54.0-pre1 12,383 5/25/2023
2.53.0 6,127,074 5/5/2023
2.53.0-pre1 14,979 4/12/2023
2.52.0 10,719,030 3/15/2023
2.52.0-pre1 10,652 3/3/2023
2.51.0 11,014,499 1/2/2023
2.51.0-pre1 19,265 12/7/2022
2.50.0 4,282,068 11/17/2022
2.50.0-pre1 31,233 11/3/2022
2.49.0 11,167,908 9/26/2022
2.49.0-pre1 9,514 9/1/2022
2.48.0 1,802,775 8/24/2022
2.48.0-pre1 3,945 8/17/2022
2.47.0 7,056,241 7/3/2022
2.47.0-pre1 4,959 6/23/2022
2.46.0 10,438,230 5/13/2022
2.46.0-pre1 8,106 4/28/2022
2.45.0 2,199,706 4/19/2022
2.45.0-pre1 14,505 4/7/2022
2.44.0 1,942,598 3/17/2022
2.44.0-pre1 22,030 3/9/2022
2.43.0 25,770,396 2/25/2022
2.43.0-pre1 23,745 1/28/2022
2.42.0 3,359,823 1/19/2022
2.42.0-pre1 14,969 12/30/2021
2.41.0 2,067,933 12/7/2021
2.41.0-pre1 39,276 11/12/2021
2.40.0 8,638,196 10/5/2021
2.40.0-pre1 8,302 9/9/2021
2.39.0 2,350,962 8/18/2021
2.39.0-pre1 77,228 8/6/2021
2.38.0 2,788,126 6/11/2021
2.38.0-pre1 3,326 6/4/2021
2.37.0 7,638,392 4/20/2021
2.37.0-pre1 3,140 4/14/2021
2.36.0 1,617,134 3/17/2021
2.36.0-pre1 3,325 3/9/2021
2.35.0 1,559,573 2/4/2021
2.35.0-pre1 4,023 1/26/2021
2.34.0 3,730,748 12/11/2020
2.34.0-pre1 5,545 12/1/2020
2.33.1 2,038,423 10/28/2020
2.33.1-pre1 2,684 10/22/2020
2.32.0 11,890,353 10/5/2020
2.32.0-pre1 16,381 9/8/2020
2.31.0 1,278,258 8/14/2020
2.31.0-pre2 2,889 8/3/2020
2.30.0 612,730 7/16/2020
2.30.0-pre1 16,838 6/17/2020
2.29.0 1,147,872 5/27/2020
2.29.0-pre1 7,170 5/15/2020
2.28.0 885,654 4/9/2020
2.28.0-pre2 20,633 3/11/2020
2.28.0-pre1 9,689 3/3/2020
2.27.0 1,906,940 2/7/2020
2.27.0-pre1 27,591 1/24/2020
2.26.0 1,606,168 12/19/2019
2.26.0-pre1 2,727 12/10/2019
2.25.0 1,072,712 11/7/2019
2.25.0-pre1 2,604 11/1/2019
2.24.0 508,071 10/21/2019
2.24.0-pre1 3,871 10/9/2019
2.23.2 531,588 9/20/2019
0.2.23-pre2 13,835 9/6/2019
0.2.23-pre1 14,155 8/21/2019
0.1.22-pre3 9,126 7/30/2019
0.1.22-pre2 16,388 7/2/2019
0.1.22-pre1 5,508 6/17/2019
0.1.21-pre1 2,964 6/4/2019