Пример #1
0
        public void DisposeEventBridge()
        {
            if (null != _applicationEvents_SinkHelper)
            {
                _applicationEvents_SinkHelper.Dispose();
                _applicationEvents_SinkHelper = null;
            }
            if (null != _applicationEvents_10_SinkHelper)
            {
                _applicationEvents_10_SinkHelper.Dispose();
                _applicationEvents_10_SinkHelper = null;
            }
            if (null != _applicationEvents_11_SinkHelper)
            {
                _applicationEvents_11_SinkHelper.Dispose();
                _applicationEvents_11_SinkHelper = null;
            }

            _connectPoint = null;
        }
Пример #2
0
        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.ApplicationEvents_SinkHelper.Id, NetOffice.OutlookApi.Behind.EventContracts.ApplicationEvents_10_SinkHelper.Id, NetOffice.OutlookApi.Behind.EventContracts.ApplicationEvents_11_SinkHelper.Id);
            }


            if (NetOffice.OutlookApi.Behind.EventContracts.ApplicationEvents_SinkHelper.Id.Equals(_activeSinkId, StringComparison.InvariantCultureIgnoreCase))
            {
                _applicationEvents_SinkHelper = new NetOffice.OutlookApi.Behind.EventContracts.ApplicationEvents_SinkHelper(this, _connectPoint);
                return;
            }

            if (NetOffice.OutlookApi.Behind.EventContracts.ApplicationEvents_10_SinkHelper.Id.Equals(_activeSinkId, StringComparison.InvariantCultureIgnoreCase))
            {
                _applicationEvents_10_SinkHelper = new NetOffice.OutlookApi.Behind.EventContracts.ApplicationEvents_10_SinkHelper(this, _connectPoint);
                return;
            }

            if (NetOffice.OutlookApi.Behind.EventContracts.ApplicationEvents_11_SinkHelper.Id.Equals(_activeSinkId, StringComparison.InvariantCultureIgnoreCase))
            {
                _applicationEvents_11_SinkHelper = new NetOffice.OutlookApi.Behind.EventContracts.ApplicationEvents_11_SinkHelper(this, _connectPoint);
                return;
            }
        }