Universal Windows Service Class Library

CronTrigger.Configure Method (String, String, String, String, String)

Configures the trigger using seperate strings containing cron informations.

public void Configure(
   string minutes,
   string hours,
   string monthDays,
   string months,
   string weekDays
);

Parameters

minutes
String containing cron informations about the minutes.
hours
String containing cron informations about the hours.
monthDays
String containing cron informations about the days of the monts.
months
String containing cron informations about the months.
weekDays
String containing cron informations about the days of the week.

Remarks

This method configue the trigger with given cron informations capsulated in different strings.

For detailed information about the cron string see Configure method.

Exceptions

Exception TypeCondition
ArgumentNullExceptionAt least on argument was not given.
ArgumentExceptionThrown if at least one invalid cron string was given.

See Also

CronTrigger Class | uws.Triggers Namespace | CronTrigger.Configure Overload List