gpt4 book ai didi

asp.net-mvc - DDay iCal - 添加参加者

转载 作者:行者123 更新时间:2023-12-03 23:49:42 26 4
gpt4 key购买 nike

如何向 iCal 事件添加必需/可选的与会者 + 组织者?

我正在使用优秀的 DDay 库,并且也希望能够 add a CN ,但在 documentation 中没有找到任何示例、下载的示例或其他地方。

谢谢!

最佳答案

我得到了解决方案。不是很整洁,但它对我有用。

iCalendar calendar = new iCalendar();
calendar.Method = "PUBLISH";

Event evt = calendar.Create<Event>();

var attendes = new List<IAttendee>();
//required attendee
IAttendee attendee1 = new DDay.iCal.Attendee("MAILTO:myid@gmail.com")
{
CommonName = "Naveen Jose",
Role = "REQ-PARTICIPANT"
};
attendes.Add(attendee1);
//optional attendee
IAttendee attendee2 = new DDay.iCal.Attendee("MAILTO:someid@codovations.com")
{
CommonName = "Noah Naveen",
Role = "OPT-PARTICIPANT"
};
attendes.Add(attendee2);
if (attendes != null && attendes.Count > 0)
{
evt.Attendees = attendes;
}

关于asp.net-mvc - DDay iCal - 添加参加者,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7748246/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com