Fix gRPC typo (#16984)

pull/16994/head
James Newton-King 2020-02-13 09:43:37 +13:00 committed by GitHub
parent 4ea3578989
commit 75d9ff8064
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -105,7 +105,7 @@ gRPC clients are concrete client types that are [generated from *\*.proto* files
var channel = GrpcChannel.ForAddress("https://localhost:5001");
var client = new Greeter.GreeterClient(channel);
var response = await client.SayHello(
var response = await client.SayHelloAsync(
new HelloRequest { Name = "World" });
Console.WriteLine(response.Message);