【发布时间】:2011-04-21 17:06:20
【问题描述】:
我使用以下代码通过 Exchange Web 服务托管 API 保存约会:
Appointment appointment = new Appointment(m_exchangeService);
appointment.Subject = subject;
appointment.Body = body;
appointment.Start = start;
appointment.End = end;
appointment.Save();
当我这样做时,约会会在 Outlook 中创建为“会议”。但我只想把它当作正常的约会而不是会议。 我该怎么做?
【问题讨论】:
标签: web-services exchange-server ews-managed-api