DateBuilder ClassQuartz.NET API Documentation
DateBuilder is used to conveniently create DateTimeOffset instances that meet particular criteria.
Inheritance Hierarchy

System Object
  Quartz DateBuilder

Namespace: Quartz
Assembly: Quartz (in Quartz.dll) Version: 2.2.1.400
Syntax

public class DateBuilder
Remarks

Quartz provides a builder-style API for constructing scheduling-related entities via a Domain-Specific Language (DSL). The DSL can best be utilized through the usage of static imports of the methods on the classes TriggerBuilder, JobBuilder, DateBuilder, JobKey, TriggerKey and the various IScheduleBuilder implementations.

Client code can then use the DSL to write code such as this:

IJobDetail job = JobBuilder.Create<MyJob>()
    .WithIdentity("myJob")
    .Build();
ITrigger trigger = newTrigger()
    .WithIdentity(triggerKey("myTrigger", "myTriggerGroup"))
    .WithSimpleSchedule(x => x
        .WithIntervalInHours(1)
        .RepeatForever())
    .StartAt(DateBuilder.FutureDate(10, IntervalUnit.Minutes))
    .Build();
scheduler.scheduleJob(job, trigger);
See Also