CronScheduleBuilder AtHourAndMinuteOnGivenDaysOfWeek Method Quartz.NET 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: 2.2.1.400
Syntax

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

Parameters

hour
Type: System Int32
the hour of day to fire
minute
Type: System Int32
the minute of the given hour to fire
daysOfWeek
Type:  System DayOfWeek 
the days of the week to fire

Return Value

Type: CronScheduleBuilder
the new CronScheduleBuilder
See Also