SonarLint.VisualStudio.Progress.Controller.ErrorNotification.ErrorNotificationManager.RemoveNotifier C# (CSharp) Method

RemoveNotifier() public method

IErrorNotificationManager.RemoveNotifier
public RemoveNotifier ( IProgressErrorNotifier notifier ) : void
notifier IProgressErrorNotifier An existing instance of
return void
        public void RemoveNotifier(IProgressErrorNotifier notifier)
        {
            if (notifier == null)
            {
                throw new ArgumentNullException(nameof(notifier));
            }

            lock (this.notifiersLock)
            {
                this.notifiers.Remove(notifier);
            }
        }