grpc-dotnet
grpc-dotnet copied to clipboard
gRPC for .NET
Hello, I have trouble understanding the behavior of the GRPC interceptors. I thought it would act in a similar way as netcore middleware, i.e. that if I throw an exception...
### Is your feature request related to a problem? Please describe. The events produced by GRPC to the diagnostic listener pass a payload object which is consumed by several different...
(I haven't tested with a server-only streaming call, but I'd *expect* it to have the same behavior.) This occurs in both Grpc.Core and Grpc.Net.Client as far as I can see....
`AuthInterceptorContext` should probably have a cancellation token on it so any logic in the auth interceptor can respond to call cancellation, exceeded deadline or dispose.
In this video for .Net 7 and GRPC https://www.youtube.com/watch?v=et_2NBk4N4Y the say that GRPC should work on azure linux app service. I have implemented following this guide with no success. https://github.com/Azure/app-service-linux-docs/blob/master/HowTo/gRPC/use_gRPC_with_dotnet.md...
Hello, I want to enable HTTP/2 keep alive for a gRPC client. I believe that I should supply the relevant settings via the `GrpcChannelOptions.HttpHandler` property. My question is, how should...
Also see internal bug b/253283712. `dotnet_protobuf_async_unary_ping_pong_1MB` is run with grpc_e2e_performance_gke] on both 30-core machine and 8-core machines Since https://source.cloud.google.com/results/invocations/38c6078b-4413-488b-81a9-22a71226dcc8/targets (the job was broken before) there are multiple failures of this...
.NET 8 added keyed services. Ensure DI on interceptors and services work with keyed services.
I was recently experimenting with use of a [custom resolver](https://learn.microsoft.com/en-us/aspnet/core/grpc/loadbalancing?view=aspnetcore-8.0#write-custom-resolvers-and-load-balancers) for a use case I have where our grpc services can change addresses as they are stopped/started. We currently have...
I have a problem handling response meta data on the server side. I would like to include some information in any response my server sends, so an interceptor came to...