hi,
yes, i will do so - unfortunately it's a bit more complicated then it should be since this forum does not allow to attach .zip files, so i could compress and update my project.
1. Get access to store:
var store = await AppointmentManager.RequestStoreAsync(AppointmentStoreAccessType.AllCalendarsReadOnly);
2. Query for calendars:
var calendars = await store.FindAppointmentCalendarsAsync(FindAppointmentCalendarsOptions.None);
var calendar = calendars.First();
3. Get appointments:
var appointments = await store.FindAppointmentsAsync(startDateInclusive, timeSpan, findAppointmentsOptions);
var appointment = appointments.First();
4. Instead of using the first entry, there could be an UI to select an appointment and a calendar.
5. Call the Move method
await store.MoveAppointmentAsync(appointment, calendar);
=> this call always throws the exception.
best regards,
Hannes