其他分享
首页 > 其他分享> > WebDav:如何设置Exchange 2003约会类别?

WebDav:如何设置Exchange 2003约会类别?

作者:互联网

我正在使用Independentsoft’s WebDav API创建日历约会.我想设置约会的类别.

在Outlook中,我将按如下所示设置类别:
Outlook image http://www.freeimagehosting.net/uploads/b51648a90c.gif

如何使用WebDav API分配类别?

其他大多数字段只是约会对象的属性:

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

等等.我找不到与类别对应的属性.

解决方法:

我已经找到了答案.

该属性是关键字.这是一个字符串数组.

因此,要设置类别,您可以执行以下操作:

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

我假设您可以通过相同的方式添加多个类别:

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

标签:webdav,outlook,exchange-server,c,independentsoft
来源: https://codeday.me/bug/20191210/2100965.html