JobDetail ClassQuartz.NET API Documentation
Conveys the detail properties of a given IJob instance.
Inheritance Hierarchy

System Object
  Quartz JobDetail

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

[SerializableAttribute]
public class JobDetail : 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 JobDetail.

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

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

See Also