IScheduler ScheduleJobs Method Quartz.NET API Documentation
Schedule all of the given jobs with the related set of triggers.

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

void ScheduleJobs(
	IDictionary<IJobDetail, ISet<ITrigger>> triggersAndJobs,
	bool replace
)

Parameters

triggersAndJobs
Type: System.Collections.Generic IDictionary IJobDetail, ISet ITrigger  

[Missing <param name="triggersAndJobs"/> documentation for "M:Quartz.IScheduler.ScheduleJobs(System.Collections.Generic.IDictionary{Quartz.IJobDetail,Quartz.Collection.ISet{Quartz.ITrigger}},System.Boolean)"]

replace
Type: System Boolean

[Missing <param name="replace"/> documentation for "M:Quartz.IScheduler.ScheduleJobs(System.Collections.Generic.IDictionary{Quartz.IJobDetail,Quartz.Collection.ISet{Quartz.ITrigger}},System.Boolean)"]

Remarks

If any of the given jobs or triggers already exist (or more specifically, if the keys are not unique) and the replace parameter is not set to true then an exception will be thrown.

See Also