asp.net-mvc – DDay iCal – 添加一个与会者

前端之家收集整理的这篇文章主要介绍了asp.net-mvc – DDay iCal – 添加一个与会者前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
如何在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相关文章