IJobExecutionContextResult Property

Quartz.NET 3.0 API Documentation
Returns the result (if any) that the IJob set before its execution completed (the type of object set as the result is entirely up to the particular job).

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

C#
Object Result { get; set; }

Property Value

Type: Object
Remarks

The result itself is meaningless to Quartz, but may be informative to IJobListeners or ITriggerListeners that are watching the job's execution.

Set the result (if any) of the IJob's execution (the type of object set as the result is entirely up to the particular job).

The result itself is meaningless to Quartz, but may be informative to IJobListeners or ITriggerListeners that are watching the job's execution.

See Also

Reference