IScheduler GetJobDetail Method Quartz.NET API Documentation
Get the IJobDetail for the IJob instance with the given key .

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

IJobDetail GetJobDetail(
	JobKey jobKey
)

Parameters

jobKey
Type: Quartz JobKey

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

Return Value

Type: IJobDetail

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

Remarks

The returned JobDetail object will be a snap-shot of the actual stored JobDetail. If you wish to modify the JobDetail, you must re-store the JobDetail afterward (e.g. see AddJob(IJobDetail, Boolean)).
See Also