public void DisposeEventBridge() { if (null != _recordsetEvents_SinkHelper) { _recordsetEvents_SinkHelper.Dispose(); _recordsetEvents_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, RecordsetEvents_SinkHelper.Id); } if (RecordsetEvents_SinkHelper.Id.Equals(_activeSinkId, StringComparison.InvariantCultureIgnoreCase)) { _recordsetEvents_SinkHelper = new RecordsetEvents_SinkHelper(this, _connectPoint); return; } }
public void DisposeEventBridge() { if( null != _recordsetEvents_SinkHelper) { _recordsetEvents_SinkHelper.Dispose(); _recordsetEvents_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, RecordsetEvents_SinkHelper.Id); if(RecordsetEvents_SinkHelper.Id.Equals(_activeSinkId, StringComparison.InvariantCultureIgnoreCase)) { _recordsetEvents_SinkHelper = new RecordsetEvents_SinkHelper(this, _connectPoint); return; } }