IJobDetail InterfaceQuartz.NET API Documentation
Conveys the detail properties of a given job instance. JobDetails are to be created/defined with JobBuilder.

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

public interface IJobDetail : ICloneable
Remarks

Quartz does not store an actual instance of a IJob type, but instead allows you to define an instance of one, through the use of a IJobDetail.

IJobs have a name and group associated with them, which should uniquely identify them within a single IScheduler.

ITrigger s are the 'mechanism' by which IJob s are scheduled. Many ITrigger s can point to the same IJob, but a single ITrigger can only point to one IJob.

See Also