public virtual void DisposeEventBridge() { if (null != _eSection_SinkHelper) { _eSection_SinkHelper.Dispose(); _eSection_SinkHelper = null; } _connectPoint = null; }
public virtual void CreateEventBridge() { if (false == Factory.Settings.EnableEvents) { return; } if (null != _connectPoint) { return; } if (null == _activeSinkId) { _activeSinkId = SinkHelper.GetConnectionPoint(this, ref _connectPoint, NetOffice.VisioApi.Behind.EventContracts.ESection_SinkHelper.Id); } if (NetOffice.VisioApi.Behind.EventContracts.ESection_SinkHelper.Id.Equals(_activeSinkId, StringComparison.InvariantCultureIgnoreCase)) { _eSection_SinkHelper = new NetOffice.VisioApi.Behind.EventContracts.ESection_SinkHelper(this, _connectPoint); return; } }