'Declaration
Public Function GetJobExecutionTimes( _ ByVal queryParameters As JobQueryParameters, _ ByVal startTime As Date, _ ByVal endTime As Date _ ) As ReadOnlyCollection(Of JobExecutionTimes)
public ReadOnlyCollection<JobExecutionTimes> GetJobExecutionTimes( JobQueryParameters queryParameters, DateTime startTime, DateTime endTime )
Parameters
- queryParameters
- Query parameters to filter the jobs considered.
- startTime
- The earliest time (inclusive) to consider. Specify the date/time in the timezone of the target server (available from Scheduler.ServerTimeZone).
- endTime
- The latest time (inclusive) to consider.Specify the date/time in the timezone of the target server (available from Scheduler.ServerTimeZone).
Return Value
A collection of ArcanaDevelopment.adTempus.Shared.JobExecutionTimes with one item for each job that is scheduled for execution during the specified date/time range. The ArcanaDevelopment.adTempus.Shared.JobExecutionTimes.ExecutionTimes collection will contain a value for each scheduled execution date/time for the job.