RecurrenceRecurEveryWeekday Method

This emulates the Microsoft Outlook daily pattern with the "Every Weekday" option selected

Definition

Namespace: EWSoftware.PDI
Assembly: EWSoftware.PDI (in EWSoftware.PDI.dll) Version: 2023.1.2.0
public void RecurEveryWeekday()

Remarks

This actually equates to a weekly pattern that recurs every week on Monday through Friday. It is a convenience method that can be used in place of RecurWeekly(Int32, DaysOfWeek) for this particular recurrence pattern

Example

This call:

 
r.RecurEveryWeekday();

Is equivalent to this call:

 
r.RecurWeekly(1, DaysOfWeek.Weekdays);

See Also