示例#1
0
        static void Main(string[] args)
        {
            var channel = new Channel("localhost:2345", ChannelCredentials.Insecure);
            var client  = new IGreetRpcService.IGreetRpcServiceClient(channel);
            var reply   = client.SayHello(new HelloRequest()
            {
                Name = "Payne"
            });

            Console.WriteLine("收到回复:" + reply.Message);

            channel.ShutdownAsync().Wait();
            Console.WriteLine("任意键退出...");
            Console.ReadKey();
        }
示例#2
0
 /// <summary>
 /// CoreMessage Service
 /// </summary>
 /// <param name="client"></param>
 public CoreMessageService(IGreetRpcService.IGreetRpcServiceClient client)
 {
     _client = client;
 }