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

            var client = new ZodiacService.ZodiacServiceClient(channel);

            var birthRequest = PromptBirthday();

            var reply = client.findZodie(birthRequest);

            Console.WriteLine("Season: " + reply.Season + " || Sign: " + reply.Sign);

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