protected virtual void Dispose(bool disposing) { if (disposing) { Container?.Dispose(); Microservice?.Dispose(); FirstChanceExceptionListener?.Dispose(); UnhandledExceptionListener?.Dispose(); } }
private MicroserviceInitializer AttachExceptionListeners() { FirstChanceExceptionListener = new FirstChanceExceptionListener(Logger); FirstChanceExceptionListener.Listen(); UnhandledExceptionListener = new UnhandledExceptionListener(Logger); UnhandledExceptionListener.Listen(); return(this); }