JobSchedulingDataProcessor ClassQuartz.NET API Documentation
Parses an XML file that declares Jobs and their schedules (Triggers).
Inheritance Hierarchy

System Object
  Quartz.Xml JobSchedulingDataProcessor

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

public class JobSchedulingDataProcessor
Remarks

The xml document must conform to the format defined in "job_scheduling_data.xsd"

After creating an instance of this class, you should call one of the ProcessFile  functions, after which you may call the ScheduledJobs function to get a handle to the defined Jobs and Triggers, which can then be scheduled with the IScheduler. Alternatively, you could call the ProcessFileAndScheduleJobs(IScheduler, Boolean) function to do all of this in one step.

The same instance can be used again and again, with the list of defined Jobs being cleared each time you call a ProcessFile  method, however a single instance is not thread-safe.

See Also