我使用以下代码通过 Exchange Web Services Managed API 保存约会:
Appointment appointment = new Appointment(m_exchangeService);
appointment.Subject = subject;
appointment.Body = body;
appointment.Start = start;
appointment.End = end;
appointment.Save();
当我这样做时,约会在 Outlook 中被创建为“会议”。但我只想把它当作正常的约会而不是会议。我该怎么做呢?