2013-06-12 62 views
1

我使用Independencesoft.Exchange库。 我尝试从我的外部应用程序为某些用户创建预约。我如何设置提醒此预约为NONE? 我试图如何设置提醒时间为NONE?

var appointment = new Appointment 
      { 
       // some properties setters. 
       ReminderIsSet = false, 
       ReminderMinutesBeforeStart = 0 
      };` 

,但它不工作。有什么建议么?

+0

决不该图书馆的工作,但你试过只是没有设置在所有的提醒属性?如果它们是可以为空的属性,那么如果它们没有设置,则默认值可以为null。 – Bearcat9425

+0

我也试过了。结果是15分钟 - 作为前景的默认值。 –

+0

好吧,这是一个真正的诚实。现在看看他们的教程,看看是否有什么突出的东西 – Bearcat9425

回答

3

我知道这有点晚了,但我刚碰到这个问题。我发现,你必须同时设置下列值有提醒设置为none:

ReminderIsSetSpecified = true; 
ReminderIsSet = false; 
+0

我无法在Appointments上找到ReminderIsSetSpecified属性。 https://msdn.microsoft.com/en-us/library/microsoft.exchange.webservices.data.appointment_properties 我似乎无法动摇有关Outlook约会的15分钟提醒。 – Onosa

相关问题