We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4ea3578 commit 75d9ff8Copy full SHA for 75d9ff8
1 file changed
aspnetcore/grpc/index.md
@@ -105,7 +105,7 @@ gRPC clients are concrete client types that are [generated from *\*.proto* files
105
var channel = GrpcChannel.ForAddress("https://localhost:5001");
106
var client = new Greeter.GreeterClient(channel);
107
108
-var response = await client.SayHello(
+var response = await client.SayHelloAsync(
109
new HelloRequest { Name = "World" });
110
111
Console.WriteLine(response.Message);
0 commit comments