Hello Team,
I'm using Aspose.Email for creating appointment in PST, and want to create weekly recurrence which has multiple days.
Can you please tell me how can i set multiple weeks in MapiCalendarWeeklyRecurrencePattern object.
for your case we can set like the following eg
MapiCalendarWeeklyRecurrencePattern f_mapiCalenderWeeklyRecPat = new MapiCalendarWeeklyRecurrencePattern();
f_mapiCalenderWeeklyRecPat.PatternType = MapiCalendarRecurrencePatternType.Week;
f_mapiCalenderWeeklyRecPat.DayOfWeek = MapiCalendarDayOfWeek.Friday | MapiCalendarDayOfWeek.Monday;
But lets say i have a collection of Days that i will be getting at Run time, so can you please suggest how to add multiple days using this pipe property at run time ?
Looking for positive response.
Thank You.
Regards,
Amit