Ejemplo n.º 1
0
 protected virtual void OnDequeued(Zongsoft.Collections.DequeuedEventArgs args)
 {
     if (this.Dequeued != null)
     {
         this.Dequeued(this, args);
     }
 }
Ejemplo n.º 2
0
        protected virtual void OnDequeued(Zongsoft.Collections.DequeuedEventArgs args)
        {
            var handler = this.Dequeued;

            if (handler != null)
            {
                handler(this, args);
            }
        }