CronScheduleBuilderWeeklyOnDayAndHourAndMinute Method

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

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

C#
public static CronScheduleBuilder WeeklyOnDayAndHourAndMinute(
	DayOfWeek dayOfWeek,
	int hour,
	int minute
)

Parameters

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

Return Value

Type: CronScheduleBuilder
the new CronScheduleBuilder
Remarks

See Also

Reference