IJobStoreRetrieveJob Method

Quartz.NET 3.0 API Documentation
Retrieve the IJobDetail for the given IJob.

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

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

Parameters

jobKey
Type: QuartzJobKey

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

cancellationToken (Optional)
Type: System.ThreadingCancellationToken

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

Return Value

Type: TaskIJobDetail
The desired IJob, or null if there is no match.
See Also

Reference