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 { } }