IJobExecutionContext Put Method Quartz.NET 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: 2.2.1.400
Syntax

void Put(
	Object key,
	Object objectValue
)

Parameters

key
Type: System Object

[Missing <param name="key"/> documentation for "M:Quartz.IJobExecutionContext.Put(System.Object,System.Object)"]

objectValue
Type: System Object

[Missing <param name="objectValue"/> documentation for "M:Quartz.IJobExecutionContext.Put(System.Object,System.Object)"]

See Also