IJobExecutionContextPut Method

Quartz.NET 3.0 API Documentation
Put the specified value into the context's data map with the given key. Possibly useful for sharing data between listeners and jobs.

NOTE: this data is volatile - it is lost after the job execution completes, and all TriggerListeners and JobListeners have been notified.

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

C#
void Put(
	Object key,
	Object objectValue
)

Parameters

key
Type: SystemObject
objectValue
Type: SystemObject
See Also

Reference