C# Class FluentScheduler.WeekUnit

Unit of time in weeks.
显示文件 Open project: fluentscheduler/FluentScheduler Class Usage Examples

Private Properties

Property Type Description
WeekUnit System

Public Methods

Method Description
At ( int hours, int minutes ) : void

Runs the job at the given time of day.

On ( DayOfWeek day ) : WeeklyDayOfWeekUnit

Runs the job on the given day of the week.

Private Methods

Method Description
WeekUnit ( Schedule schedule, int duration ) : System

Method Details

At() public method

Runs the job at the given time of day.
public At ( int hours, int minutes ) : void
hours int The hours (0 through 23).
minutes int The minutes (0 through 59).
return void

On() public method

Runs the job on the given day of the week.
public On ( DayOfWeek day ) : WeeklyDayOfWeekUnit
day DayOfWeek The day of the week.
return WeeklyDayOfWeekUnit