IDriverDelegateSelectJobDetail Method

Quartz.NET 3.0 API Documentation
Select the JobDetail object for a given job name / group name.

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

C#
Task<IJobDetail> SelectJobDetail(
	ConnectionAndTransactionHolder conn,
	JobKey jobKey,
	ITypeLoadHelper classLoadHelper,
	CancellationToken cancellationToken = null
)

Parameters

conn
Type: Quartz.Impl.AdoJobStoreConnectionAndTransactionHolder
The DB Connection
jobKey
Type: QuartzJobKey
The key identifying the job.
classLoadHelper
Type: Quartz.SpiITypeLoadHelper
The class load helper.
cancellationToken (Optional)
Type: System.ThreadingCancellationToken
The cancellation instruction.

Return Value

Type: TaskIJobDetail
The populated JobDetail object
See Also

Reference