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