如何获取任命的所有参与者的邮箱和名称?

时间:2011-07-04 12:22:52

标签: web-services exchange-server

我正在使用Exchange网络服务,我想获取appointment的所有参与者的邮箱和名称。

我是这样做的:

foreach (Attendee participant in appointment.RequiredAttendees)
{
    Console.WriteLine("Attendee {0}", participant.Name);
}

它没有给我任何回报。

1 个答案:

答案 0 :(得分:0)

RequiredAttendees是一个字符串。您需要收件人集合。