相关疑难解决方法(0)

交流约会类型

我使用以下代码通过Exchange Web服务托管API保存约会:

Appointment appointment = new Appointment(m_exchangeService);
appointment.Subject = subject;
appointment.Body = body;
appointment.Start = start;
appointment.End = end;
appointment.Save();
Run Code Online (Sandbox Code Playgroud)

当我这样做时,约会将被创建为Outlook中的“会议”。但我只想将其作为普通的约会而不是开会。我该怎么做呢?

exchange-server web-services ews-managed-api

5
推荐指数
1
解决办法
1512
查看次数