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.
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" };
Source: https://habr.com/ru/post/1728548/More articles:How to convert this piece of code in Generics? - generics∞ converts to âž when pasted into a MySQL table - javascriptDeploying Subversion and Testing - version-controlRun binary in ruby (on Heroku) - ruby | fooobar.comListening to TCP connections through a browser - browserWhy doesn't my subclass UIView get touches moved to UIScrollView? - iphonehttps://translate.googleusercontent.com/translate_c?depth=1&pto=aue&rurl=translate.google.com&sl=ru&sp=nmt4&tl=en&u=https://fooobar.com/questions/1728550/ios-5-uiscrollview-not-pass-touches-to-nextresponder&usg=ALkJrhh9ABAUskOQtRBQnZ1tZaSZwbag8Asend keystrokes with ajax after 1 s? - javascripttouchsMoved не стреляет в iOS5 для iPhone для UIScrollView - iphoneRemoving an Object in NSArrayController - objective-cAll Articles