Example #1
0
 /// <summary>
 /// Called on each occurred exception.
 /// </summary>
 protected virtual void OnThreadException(ObjectThreadExceptionEventArgs eArgs)
 {
     if (ThreadException != null)
     {
         ThreadException(this, eArgs);
     }
 }
Example #2
0
 /// <summary>
 /// Called on each occurred exception.
 /// </summary>
 protected virtual void OnThreadException(ObjectThreadExceptionEventArgs eArgs)
 {
     this.ThreadException?.Invoke(this, eArgs);
 }