CronScheduleBuilderAtHourAndMinuteOnGivenDaysOfWeek Method

Quartz.NET 3.0 API Documentation
Create a CronScheduleBuilder with a cron-expression that sets the schedule to fire at the given day at the given time (hour and minute) on the given days of the week.

Namespace:  Quartz
Assembly:  Quartz (in Quartz.dll) Version: 3.0.0
Syntax

C#
public static CronScheduleBuilder AtHourAndMinuteOnGivenDaysOfWeek(
	int hour,
	int minute,
	params DayOfWeek[] daysOfWeek
)

Parameters

hour
Type: SystemInt32
the hour of day to fire
minute
Type: SystemInt32
the minute of the given hour to fire
daysOfWeek
Type: SystemDayOfWeek
the days of the week to fire

Return Value

Type: CronScheduleBuilder
the new CronScheduleBuilder
See Also

Reference