You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Right now, GRPC Interceptors for C# don't have good support for name construction. While the ClientTracingInterceptor can use ClientInterceptorContext<TRequest, TResponse> to receive an Method<TRequest, TResponse> instance for the method, the ServerTracingInterceptor only offers ServerCallContext which has just a string instance for the method. IOperationNameConstructor therefore has two methods for both variants.
It would be great, if Google would resolve this asymmetry in grpc-csharp.
The text was updated successfully, but these errors were encountered:
Right now, GRPC Interceptors for C# don't have good support for name construction. While the
ClientTracingInterceptor
can useClientInterceptorContext<TRequest, TResponse>
to receive anMethod<TRequest, TResponse>
instance for the method, theServerTracingInterceptor
only offersServerCallContext
which has just astring
instance for the method.IOperationNameConstructor
therefore has two methods for both variants.It would be great, if Google would resolve this asymmetry in grpc-csharp.
The text was updated successfully, but these errors were encountered: