public class ReportScheduleInfoYearly : ReportScheduleInfo
public class ReportScheduleInfoYearly : ReportScheduleInfo
ReportScheduleInfo newSchedule = new ReportScheduleInfoYearly() { ... // Include basic options ... // Optional end date, optional intraday recurrence // Specific or relative day pattern YearlyPattern = ReportScheduleInfo.YearlyPatternType.SpecificDayOfYear, // Specific: Month/Day of every year SpecificMonthOfYear = 3, // Month of the year SpecificDayOfMonth = 15, // Day of the month // Relative: the Xth day-of-week for month N RelativeWeekOfMonth = ReportScheduleInfo.WeekOfMonthType.Last, // Week of month RelativeDayOfWeek = ReportScheduleInfo.DayOfWeekType.Friday, // Day of week RelativeMonthOfYear = 3 // Month N }
System.Object
WebReports.Api.Scheduler.ReportScheduleInfo
WebReports.Api.Scheduler.ReportScheduleInfoYearly