C# Class Quartz.TextToSchedule.CronTextToSchedule

An ITextToSchedule that supports cron expressions.
Inheritance: ITextToSchedule
显示文件 Open project: amazing-andrew/Quartz.TextToSchedule

Public Methods

Method Description
IsValid ( string text ) : bool

Determines whether the specified text is valid.

Parse ( string text ) : TextToScheduleResults

Parses the specified text into a schedule object.

Parse ( string text, TimeZoneInfo timeZone ) : TextToScheduleResults

Parses the specified text into a schedule object with the given time zone.

Private Methods

Method Description
Prepare ( string text ) : string[]

Prepares the specified text.

Method Details

IsValid() public method

Determines whether the specified text is valid.
public IsValid ( string text ) : bool
text string The text.
return bool

Parse() public method

Parses the specified text into a schedule object.
public Parse ( string text ) : TextToScheduleResults
text string The text.
return TextToScheduleResults

Parse() public method

Parses the specified text into a schedule object with the given time zone.
public Parse ( string text, TimeZoneInfo timeZone ) : TextToScheduleResults
text string The text.
timeZone System.TimeZoneInfo The time zone.
return TextToScheduleResults