Outlook 如何使用Exchange API向其他用户发送邀请

Outlook 如何使用Exchange API向其他用户发送邀请,outlook,exchangewebservices,exchange-server-2010,Outlook,Exchangewebservices,Exchange Server 2010,如何使用exchange API向其他用户发送outlook邀请?事实上我正在尝试这个 ExchangeService service = new ExchangeService(ExchangeVersion.Exchange2010_SP1); service.Credentials = new WebCredentials("example@server.com", "example"); Appointment appointment = new Appointment

如何使用exchange API向其他用户发送outlook邀请?事实上我正在尝试这个

   ExchangeService service = new ExchangeService(ExchangeVersion.Exchange2010_SP1);
   service.Credentials = new WebCredentials("example@server.com", "example");
   Appointment appointment = new Appointment(service);

但我需要使用另一个用户的电子邮件向其发送邀请。

我使用约会。RequiredAttendes.Add(新与会者()example@server.com"));用于向此人发送邀请