I am using Independentsoft's WebDav API to create a calendar appointment. I would like to set the category of the appointment.
In Outlook, I would set the category as indicated here:
How would I assign the category using the WebDav API?
Most other fields are simply properties of the appointment object:
Appointment appt = new Appointment();
appt.Body = "body";
appt.MeetingStatus = MeetingStatus.Tentative;
And so on. I have not been able to find a property that corresponds to category.