Exemplo n.º 1
0
        /// <summary>
        /// Raises the <see cref="E:JobFailedToStart" /> event.
        /// </summary>
        /// <param name="args">The <see cref="JobFailureEventArgs"/> instance containing the event data.</param>
        private void OnJobFailed(JobFailureEventArgs args)
        {
            JobFailureEvent handler = this.JobFailed;

            if (handler != null)
            {
                handler(this, args);
            }
        }
 /// <summary>
 /// Raises the <see cref="E:JobFailedToStart" /> event.
 /// </summary>
 /// <param name="args">The <see cref="JobFailureEventArgs"/> instance containing the event data.</param>
 private void OnJobFailed(JobFailureEventArgs args)
 {
     JobFailureEvent handler = this.JobFailed;
     if (handler != null)
     {
         handler(this, args);
     }
 }