IJobStore RemoveTrigger Method Quartz.NET API Documentation
Remove (delete) the ITrigger with the given key.

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

bool RemoveTrigger(
	TriggerKey triggerKey
)

Parameters

triggerKey
Type: Quartz TriggerKey

[Missing <param name="triggerKey"/> documentation for "M:Quartz.Spi.IJobStore.RemoveTrigger(Quartz.TriggerKey)"]

Return Value

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

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

If removal of the ITrigger results in an 'orphaned' IJob that is not 'durable', then the IJob should be deleted also.

See Also