Пример #1
0
        public void DisposeEventBridge()
        {
            if (null != _oCXEvents_SinkHelper)
            {
                _oCXEvents_SinkHelper.Dispose();
                _oCXEvents_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, Events.OCXEvents_SinkHelper.Id);
            }


            if (Events.OCXEvents_SinkHelper.Id.Equals(_activeSinkId, StringComparison.InvariantCultureIgnoreCase))
            {
                _oCXEvents_SinkHelper = new Events.OCXEvents_SinkHelper(this, _connectPoint);
                return;
            }
        }