我使用 Independencesoft.Exchange 库。我尝试从我的外部应用程序为某些用户创建约会。我如何将这个约会的提醒设置为 NONE?我试过了
var appointment = new Appointment
{
// some properties setters.
ReminderIsSet = false,
ReminderMinutesBeforeStart = 0
};`
但它不起作用。有什么建议么?