Exemplo n.º 1
0
        static async Task Main(string[] args)
        {
            var channel = new Channel("localhost:2584", ChannelCredentials.Insecure);

            var client = new UserService.UserServiceClient(channel);

            var data = new RequestUser
            {
                //Name = "Worameth Semapat",
                Email    = "*****@*****.**",
                BirthDay = Timestamp.FromDateTime(new DateTime(1992, 07, 04, 0, 0, 0, DateTimeKind.Utc))
            };
            var response = await client.GetUserDetailAsync(data);

            Console.WriteLine($"Message: {response.Message}, Current Age: {response.Age}");
            channel.ShutdownAsync().Wait();
        }