protected ArrayCronExpressionBase(ArrayRule minute, ArrayRule hour, ArrayRule day, ArrayRule month, ArrayRule week)
 {
     this.minuteRule = minute ?? throw new ArgumentNullException(nameof(minute));
     this.hourRule   = hour ?? throw new ArgumentNullException(nameof(hour));
     this.dayRule    = day ?? throw new ArgumentNullException(nameof(day));
     this.monthRule  = month ?? throw new ArgumentNullException(nameof(month));
     this.weekRule   = week ?? throw new ArgumentNullException(nameof(week));
 }
示例#2
0
 protected SpanArrayCronAdv(ArrayRule minute, ArrayRule hour, ArrayRule day, ArrayRule month, ArrayRule week)
     : base(minute, hour, day, month, week)
 {
 }