4
Échange
J'utilise le code suivant pour enregistrer un rendez-vous via Exchange Web Services API Managed:Types de rendez-vous
Appointment appointment = new Appointment(m_exchangeService);
appointment.Subject = subject;
appointment.Body = body;
appointment.Start = start;
appointment.End = end;
appointment.Save();
Quand je fais la nomination est créé comme une 'réunion' dans Outlook. Mais je veux juste l'avoir comme rendez-vous normal pas une réunion. Comment est-ce que je fais ceci?