예제 #1
0
 private void OnInternalError(Exception ex)
 {
     try
     {
         InternalError?.Invoke(this, new ErrorEventArgs(ex));
     }
     catch
     {
         // ignored
     }
 }
 void RaiseInternalError(Exception ex)
 {
     try { InternalError?.Invoke(this, new ErrorEventArgs(ex)); }
     catch { }
 }