标签: web-services exchange-server
我正在使用Exchange网络服务,我想获取appointment的所有参与者的邮箱和名称。
appointment
我是这样做的:
foreach (Attendee participant in appointment.RequiredAttendees) { Console.WriteLine("Attendee {0}", participant.Name); }
它没有给我任何回报。
答案 0 :(得分:0)
RequiredAttendees是一个字符串。您需要收件人集合。