Ejemplo n.º 1
0
        private void InvokeJobProcessingStarted(QueueProgressEventArgs e)
        {
            QueueProgressStatus handler = this.JobProcessingStarted;

            if (handler != null)
            {
                handler(this, e);
            }
        }
Ejemplo n.º 2
0
 private void InvokeJobProcessingStarted(QueueProgressEventArgs e)
 {
     this.JobProcessingStarted?.Invoke(this, e);
 }
Ejemplo n.º 3
0
 /// <summary>
 /// Invoke the JobProcessingStarted event
 /// </summary>
 /// <param name="e">
 /// The QueueProgressEventArgs.
 /// </param>
 private void InvokeJobProcessingStarted(QueueProgressEventArgs e)
 {
     QueueProgressStatus handler = this.JobProcessingStarted;
     if (handler != null)
     {
         handler(this, e);
     }
 }