IScheduler GetTriggersOfJob Method Quartz.NET API Documentation
Get all ITrigger s that are associated with the identified IJobDetail.

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

IList<ITrigger> GetTriggersOfJob(
	JobKey jobKey
)

Parameters

jobKey
Type: Quartz JobKey

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

Return Value

Type: IList ITrigger 

[Missing <returns> documentation for "M:Quartz.IScheduler.GetTriggersOfJob(Quartz.JobKey)"]

Remarks

The returned Trigger objects will be snap-shots of the actual stored triggers. If you wish to modify a trigger, you must re-store the trigger afterward (e.g. see RescheduleJob(TriggerKey, ITrigger)).
See Also