コード例 #1
0
        public static void Main(string[] args)
        {
            Channel channel = new Channel("localhost:50002", ChannelCredentials.Insecure);

            var client       = new ZodiacService.ZodiacServiceClient(channel);
            var birthRequest = getBirthday();

            var reply = client.ZodieFinder(birthRequest);

            Console.WriteLine("Zodie : " + reply.Sign);

            Console.ReadKey();
            channel.ShutdownAsync().Wait();
        }