Exago .NET API Documentation
NextExecuteInstant Property
Example 
WebReports.Api.Scheduler Namespace > JobInfo Class : NextExecuteInstant Property
Returns a NodaTime.Instant representing the next time this job will be executed. Typically, this instant is converted to a standard UTC time.
Syntax
public NodaTime.Instant NextExecuteInstant {get; set;}
Example
Convert the Instant object returned by the NextExecuteInstant method to a UTC Date Time, then save that as a parameter being passed along in a SQL statement in the Scheduler Queue
sql.SqlParams.Add(new SqlParameter("@nextExecuteDate", job.Job.JobInfo.NextExecuteInstant.ToDateTimeUtc()));
See Also

Reference

JobInfo Class
JobInfo Members