DDay iCal - adding an Attendee?

I got a solution. Not very neat but its working for me.

Up vote 7 down vote favorite 1 share g+ share fb share tw.

I'm using the excellent DDay library, and would love to be able to also add a CN, but haven't found any examples in the documentation, the downloaded examples or elsewhere. Thanks! Asp.

Net-mvc ical dday link|improve this question edited Oct 28 '11 at 22:39 asked Oct 13 '11 at 0:48ck5101377 100% accept rate.

I got a solution. Not very neat but its working for me. ICalendar calendar = new iCalendar(); calendar.

Method = "PUBLISH"; Event evt = calendar.Create(); var attendes = new List(); //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:[email protected]") { CommonName = "Noah Naveen", Role = "OPT-PARTICIPANT" }; attendes. Add(attendee2); if (attendes! = null && attendes.

Count > 0) { evt. Attendees = attendes; }.

Thanks - that worked for me. – ck510 Nov 29 '11 at 23:20.

I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.

Related Questions