Exemplo n.º 1
0
        public virtual void DisposeEventBridge()
        {
            if (null != _hTMLMapEvents_SinkHelper)
            {
                _hTMLMapEvents_SinkHelper.Dispose();
                _hTMLMapEvents_SinkHelper = null;
            }

            _connectPoint = null;
        }
Exemplo n.º 2
0
        public virtual void CreateEventBridge()
        {
            if (false == Factory.Settings.EnableEvents)
            {
                return;
            }

            if (null != _connectPoint)
            {
                return;
            }

            if (null == _activeSinkId)
            {
                _activeSinkId = SinkHelper.GetConnectionPoint(this, ref _connectPoint, NetOffice.MSHTMLApi.Behind.EventContracts.HTMLMapEvents_SinkHelper.Id);
            }


            if (NetOffice.MSHTMLApi.Behind.EventContracts.HTMLMapEvents_SinkHelper.Id.Equals(_activeSinkId, StringComparison.InvariantCultureIgnoreCase))
            {
                _hTMLMapEvents_SinkHelper = new NetOffice.MSHTMLApi.Behind.EventContracts.HTMLMapEvents_SinkHelper(this, _connectPoint);
                return;
            }
        }