IScheduler DeleteJobs Method Quartz.NET API Documentation
Delete the identified jobs from the Scheduler - and any associated ITriggers.

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

bool DeleteJobs(
	IList<JobKey> jobKeys
)

Parameters

jobKeys
Type: System.Collections.Generic IList JobKey 

[Missing <param name="jobKeys"/> documentation for "M:Quartz.IScheduler.DeleteJobs(System.Collections.Generic.IList{Quartz.JobKey})"]

Return Value

Type: Boolean
true if all of the Jobs were found and deleted, false if one or more were not deleted.
Remarks

Note that while this bulk operation is likely more efficient than invoking DeleteJob(JobKey) several times, it may have the adverse affect of holding data locks for a single long duration of time (rather than lots of small durations of time).

See Also