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());
        }
    }