Quartz.TextToSchedule.TextToScheduleFactory.CreateStandardParser C# (CSharp) Method

CreateStandardParser() public method

Creates the standard parser that parses both English and Cron syntax.
public CreateStandardParser ( ) : ITextToSchedule
return ITextToSchedule
        public ITextToSchedule CreateStandardParser()
        {
            return new MultiTextToSchedule(
                CreateEnglishParser(),
                CreateCronParser());
        }
    }