2013-06-12 77 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

相關問題