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