Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用出色的DDay.iCal从 Google 日历中读取 iCal 文件。
每个 iCal 文件都有一个非标准属性 X-WR-CALNAME。
如何将此添加到 DDay.iCal.iCalendar.Calendar 对象?
这就是我的做法......不知道这是否是正确的方法,但它对我有用。
var iCal = new iCalendar(); iCal.Method = CalendarMethods.Publish; iCal.AddLocalTimeZone(); iCal.AddProperty("X-WR-CALNAME", "Calendar Name");