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

			_connectPoint = null;
		}
Exemplo 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, HTMLAreaEvents_SinkHelper.Id);


			if(HTMLAreaEvents_SinkHelper.Id.Equals(_activeSinkId, StringComparison.InvariantCultureIgnoreCase))
			{
				_hTMLAreaEvents_SinkHelper = new HTMLAreaEvents_SinkHelper(this, _connectPoint);
				return;
			} 
        }