我使用以下代码通过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中的“会议”。但我只想将其作为普通的约会而不是开会。我该怎么做呢?