public void DisposeEventBridge() { if (null != _olkOptionButtonEvents_SinkHelper) { _olkOptionButtonEvents_SinkHelper.Dispose(); _olkOptionButtonEvents_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, NetOffice.OutlookApi.Behind.EventContracts.OlkOptionButtonEvents_SinkHelper.Id); } if (NetOffice.OutlookApi.Behind.EventContracts.OlkOptionButtonEvents_SinkHelper.Id.Equals(_activeSinkId, StringComparison.InvariantCultureIgnoreCase)) { _olkOptionButtonEvents_SinkHelper = new NetOffice.OutlookApi.Behind.EventContracts.OlkOptionButtonEvents_SinkHelper(this, _connectPoint); return; } }