Eliminar texto de cuerpo de cita de EWS
EWS crea una cita con un texto "Cuando" predeterminado en el cuerpo. Por favor vea la imagen de abajo:
Me pregunto si es posible eliminar u ocultar este texto de alguna manera.
Aquí está mi código que crea una cita usando la API administrada de EWS
ExchangeService service = new ExchangeService(ExchangeVersion.Exchange2010_SP1, TimeZoneInfo.FindSystemTimeZoneById("Eastern Standard Time"));
service.Credentials = new WebCredentials("ews_calendar", PASSWORD, "acme");
service.Url = new Uri("https://acme.com/EWS/Exchange.asmx");
Appointment newAppointment = new Appointment(service);
newAppointment.Subject = "Test Subject";
newAppointment.Body = "Test Body";
newAppointment.Start = new DateTime(2012, 07, 19, 17, 00, 0);
newAppointment.End = newAppointment.Start.AddMinutes(30);
newAppointment.RequiredAttendees.Add("[email protected]");
// create new appointment
newAppointment.Save(SendInvitationsMode.SendToAllAndSaveCopy);