ISchedulerPlugin Initialize Method Quartz.NET API Documentation
Called during creation of the IScheduler in order to give the ISchedulerPlugin a chance to Initialize.

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

void Initialize(
	string pluginName,
	IScheduler sched
)

Parameters

pluginName
Type: System String
The name by which the plugin is identified.
sched
Type: Quartz IScheduler
The scheduler to which the plugin is registered.
Remarks

At this point, the Scheduler's IJobStore is not yet

If you need direct access your plugin, you can have it explicitly put a reference to itself in the IScheduler's SchedulerContext as part of its Initialize(String, IScheduler) method.

See Also