mirror of https://github.com/grpc/grpc.git
The C based gRPC (C++, Python, Ruby, Objective-C, PHP, C#)
https://grpc.io/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
618 B
25 lines
618 B
9 years ago
|
using System;
|
||
|
using Grpc.Core;
|
||
|
using Helloworld;
|
||
|
|
||
|
namespace GreeterClient
|
||
|
{
|
||
|
class Program
|
||
|
{
|
||
|
public static void Main(string[] args)
|
||
|
{
|
||
|
Channel channel = new Channel("127.0.0.1:50051", Credentials.Insecure);
|
||
|
|
||
|
var client = Greeter.NewClient(channel);
|
||
|
String user = "you";
|
||
|
|
||
|
var reply = client.SayHello(new HelloRequest { Name = user });
|
||
|
Console.WriteLine("Greeting: " + reply.Message);
|
||
|
|
||
|
channel.ShutdownAsync().Wait();
|
||
|
Console.WriteLine("Press any key to exit...");
|
||
|
Console.ReadKey();
|
||
|
}
|
||
|
}
|
||
|
}
|