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

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

void Execute(
	JobExecutionContext 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