Search code examples
c#.netweb-servicesexchange-serverexchangewebservices

How to set reminding time for appointment to NONE?


I use Independencesoft.Exchange library. I try to create an appointment for some users from my external application. How can I set reminding of this appointment to NONE? I tried

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

but it does not work. Any suggestions?


Solution

  • I know this is a little late, but I just came across this issue. I found out that you have to set both of the following values to have reminder set to none:

    ReminderIsSetSpecified = true;
    ReminderIsSet = false;