Weekdays Only

Hi,

I am evaluating the Aspose.iCalendar component to implement recurrence in my application. I have been very impressed but I am not sure the best way to create a recurrence pattern that I have come across. The pattern is for an event to take place on every weekday.

I came across this post in the Aspose.Recurrence group:
https://forum.aspose.com/t/46655 that explains how to create this pattern in Aspose.Recurrence but I am not sure how to achieve it in iCalendar.

Thanks in advance,

Graham

DTSTART:20050101T000000
RRULE:FREQ=DAILY;UNTIL=20050131T000000Z;BYDAY=MO,TU,WE,TH,FR

This will try every day in Jan 2005 and select only weekdays as specified in BYDAY.

Thanks for that.

Graham