public void NotifyChange(INotifyEvent e) { for (int index = 0; index < m_observerList.Count(); index++) { m_observerList[index].OnNotifyChange(this, e); } }
protected override void Dispose(bool disposing) { if (disposing) { OnChange = null; OnChanging = null; Clear(); fList.Dispose(); } base.Dispose(disposing); }
public HubLogEventSink(IHubContext <LoggingHub, ILoggingHub> loggingHub, INotifyEvent <LogEventLevel> notifier) { notifier.Notify += LogEventLevelChanged; this.loggingHub = loggingHub; }
public virtual void OnNotifyChange(INotifier notify, INotifyEvent e) { }