/// <summary> /// Raises the <see cref="E:CodeSmith.Core.Scheduler.JobManager.JobCompleted"/> event. /// </summary> /// <param name="e">The <see cref="JobCompletedEventArgs"/> instance containing the event data.</param> internal void OnJobCompleted(JobCompletedEventArgs e) { if (JobCompleted == null) { return; } JobCompleted(this, e); }
/// <summary> /// Raises the <see cref="E:CodeSmith.Core.Scheduler.JobManager.JobCompleted"/> event. /// </summary> /// <param name="e">The <see cref="JobCompletedEventArgs"/> instance containing the event data.</param> internal void OnJobCompleted(JobCompletedEventArgs e) { if (JobCompleted == null) return; JobCompleted(this, e); }