IJobStore RemoveJob Method Quartz.NET API Documentation
Remove (delete) the IJob with the given key, and any ITrigger s that reference it.

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

bool RemoveJob(
	JobKey jobKey
)

Parameters

jobKey
Type: Quartz JobKey

[Missing <param name="jobKey"/> documentation for "M:Quartz.Spi.IJobStore.RemoveJob(Quartz.JobKey)"]

Return Value

Type: Boolean
  if a IJob with the given name and group was found and removed from the store.
Remarks

If removal of the IJob results in an empty group, the group should be removed from the IJobStore's list of known group names.
See Also