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

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

void Execute(
	IJobExecutionContext context
)
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