public class ReportScheduleInfoMonthly : ReportScheduleInfo
An extension of the ReportScheduleInfo base class, a ReportScheduleInfoMonthly object describes a schedule with a monthly recurrence pattern.
public class ReportScheduleInfoMonthly : ReportScheduleInfo
ReportScheduleInfo newSchedule = new ReportScheduleInfoMonthly() { ... // Include basic options ... // Optional end date, optional intraday recurrence // Specific or relative day pattern MonthlyPattern = ReportScheduleInfo.MonthlyPatternType.SpecificDayOfMonth, // Specific: day X of every N months SpecificDayOfMonth = 7, // Day of the month SpecificEveryNMonths = 2, // Every N months // Relative: the Xth day-of-week of every N months RelativeWeekOfMonth = ReportScheduleInfo.WeekOfMonthType.First, // Week of month RelativeDayOfWeek = ReportScheduleInfo.DayOfWeekType.Weekday, // Day of week RelativeEveryNMonths = 2 // Every N months }
System.Object
WebReports.Api.Scheduler.ReportScheduleInfo
WebReports.Api.Scheduler.ReportScheduleInfoMonthly