ScheduleReport constructor

Represents a report of scheduled jobs at a specific time. Contains the generation time and a list of job information. This is useful for monitoring and auditing scheduled tasks.

public ScheduleReport(DateTimeOffset GeneratedAt, IReadOnlyList<JobInfo> Jobs)
parameter description
GeneratedAt The time the report was generated.
Jobs The list of job information.

Remarks

This report can be used to track the status and execution history of scheduled jobs. It is particularly useful for debugging and operational monitoring.

See Also