Esempio n. 1
0
        public void DisposeEventBridge()
        {
            if (null != __DRecipientControlEvents_SinkHelper)
            {
                __DRecipientControlEvents_SinkHelper.Dispose();
                __DRecipientControlEvents_SinkHelper = null;
            }

            _connectPoint = null;
        }
Esempio n. 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._DRecipientControlEvents_SinkHelper.Id);
            }


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