WebDav: How to set Exchange 2003 Destination Category?

I am using the Independentsoft WebDav API to create a calendar appointment. I would like to specify a destination category.

In Outlook, I would set the category listed here: Outlook Image http://www.freeimagehosting.net/uploads/b51648a90c.gif

How to assign a category using the WebDav API?

Most other fields are just properties of the target:

Appointment appt = new Appointment();
appt.Body = "body";
appt.MeetingStatus = MeetingStatus.Tentative;

Etc. I could not find a property matching the category.

+3
source share
1 answer

I found the answer to this question.

Property are keywords. This is a string array.

, , :

appt.Keywords = new string[] { "CategoryName" };

, :

appt.Keywords = new string[] { "CategoryName1", "CategoryName2" };
+3

Source: https://habr.com/ru/post/1728548/


All Articles