ISchedulerGetJobDetail Method

Quartz.NET 3.0 API Documentation
Get the IJobDetail for the IJob instance with the given key .

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

C#
Task<IJobDetail> GetJobDetail(
	JobKey jobKey,
	CancellationToken cancellationToken = null
)

Parameters

jobKey
Type: QuartzJobKey

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

cancellationToken (Optional)
Type: System.ThreadingCancellationToken

[Missing <param name="cancellationToken"/> documentation for "M:Quartz.IScheduler.GetJobDetail(Quartz.JobKey,System.Threading.CancellationToken)"]

Return Value

Type: TaskIJobDetail

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

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, CancellationToken)).
See Also

Reference