IScheduler AddJob Method (IJobDetail, Boolean)Quartz.NET API Documentation
Add the given IJob to the Scheduler - with no associated ITrigger. The IJob will be 'dormant' until it is scheduled with a ITrigger, or TriggerJob(JobKey) is called for it.

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

void AddJob(
	IJobDetail jobDetail,
	bool replace
)

Parameters

jobDetail
Type: Quartz IJobDetail

[Missing <param name="jobDetail"/> documentation for "M:Quartz.IScheduler.AddJob(Quartz.IJobDetail,System.Boolean)"]

replace
Type: System Boolean

[Missing <param name="replace"/> documentation for "M:Quartz.IScheduler.AddJob(Quartz.IJobDetail,System.Boolean)"]

Remarks

The IJob must by definition be 'durable', if it is not, SchedulerException will be thrown.
See Also