public void CreateEventBridge() { if (false == Factory.Settings.EnableEvents) { return; } if (null != _connectPoint) { return; } if (null == _activeSinkId) { _activeSinkId = SinkHelper.GetConnectionPoint(this, ref _connectPoint, Events._SectionEvents_SinkHelper.Id, Events.DispSectionEvents_SinkHelper.Id); } if (Events._SectionEvents_SinkHelper.Id.Equals(_activeSinkId, StringComparison.InvariantCultureIgnoreCase)) { __SectionEvents_SinkHelper = new Events._SectionEvents_SinkHelper(this, _connectPoint); return; } if (Events.DispSectionEvents_SinkHelper.Id.Equals(_activeSinkId, StringComparison.InvariantCultureIgnoreCase)) { _dispSectionEvents_SinkHelper = new Events.DispSectionEvents_SinkHelper(this, _connectPoint); return; } }
public void DisposeEventBridge() { if (null != __SectionEvents_SinkHelper) { __SectionEvents_SinkHelper.Dispose(); __SectionEvents_SinkHelper = null; } if (null != _dispSectionEvents_SinkHelper) { _dispSectionEvents_SinkHelper.Dispose(); _dispSectionEvents_SinkHelper = null; } _connectPoint = null; }