IScheduler AddJob Method (IJobDetail, Boolean, 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,
	bool storeNonDurableWhileAwaitingScheduling
)

Parameters

jobDetail
Type: Quartz IJobDetail

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

replace
Type: System Boolean

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

storeNonDurableWhileAwaitingScheduling
Type: System Boolean

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

Remarks

With the storeNonDurableWhileAwaitingScheduling parameter set to , a non-durable job can be stored. Once it is scheduled, it will resume normal non-durable behavior (i.e. be deleted once there are no remaining associated triggers).
See Also