IJobExecute Method

Quartz.NET 3.0 API Documentation
Called by the IScheduler when a ITrigger fires that is associated with the IJob.

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

C#
Task Execute(
	IJobExecutionContext context
)

Parameters

context
Type: QuartzIJobExecutionContext
The execution context.

Return Value

Type: Task

[Missing <returns> documentation for "M:Quartz.IJob.Execute(Quartz.IJobExecutionContext)"]

Remarks

The implementation may wish to set a result object on the JobExecutionContext before this method exits. The result itself is meaningless to Quartz, but may be informative to IJobListeners or ITriggerListeners that are watching the job's execution.
See Also

Reference