Quartz.TextToSchedule.TextToScheduleFactory.CreateStandardParser C# (CSharp) 메소드

CreateStandardParser() 공개 메소드

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