ITrigger GetNextFireTimeUtc Method Quartz.NET API Documentation
Returns the next time at which the ITrigger is scheduled to fire. If the trigger will not fire again,   will be returned. Note that the time returned can possibly be in the past, if the time that was computed for the trigger to next fire has already arrived, but the scheduler has not yet been able to fire the trigger (which would likely be due to lack of resources e.g. threads).

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

Nullable<DateTimeOffset> GetNextFireTimeUtc()

Return Value

Type: Nullable DateTimeOffset 

[Missing <returns> documentation for "M:Quartz.ITrigger.GetNextFireTimeUtc"]

Remarks

The value returned is not guaranteed to be valid until after the ITrigger has been added to the scheduler.
See Also