开发者

How do I get the mailbox and the name of all of the participants of an appointement?

开发者 https://www.devze.com 2023-03-17 16:35 出处:网络
I am working with an Exchange web service, and I want to get the mailbox and the name of all the participants of an appointment.

I am working with an Exchange web service, and I want to get the mailbox and the name of all the participants of an appointment.

I do this using:

for开发者_如何学编程each (Attendee participant in appointment.RequiredAttendees)
{
    Console.WriteLine("Attendee {0}", participant.Name);
}

and it returns me nothing.


RequiredAttendees is a string. You need the Recipients collection.

0

精彩评论

暂无评论...
验证码 换一张
取 消