I can see that I can easily read headers on server side, write them in response but on client side I see no option how to read headers that are send by server?
var client = new GreeterClient(Channel);
var call = client.SayHelloAsync(request);
var headers = await call.ResponseHeadersAsync;
var reply = await call;
Ok so it looks like headers can be read first. Are there any potential performance problems reading messages in such way?
Not that I can think of
Inssue has bee answered