Exemplo n.º 1
0
        /// <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);
        }
Exemplo n.º 2
0
        /// <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);
        }