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


            if (EventInterfaces._dispReferences_Events_SinkHelper.Id.Equals(_activeSinkId, StringComparison.InvariantCultureIgnoreCase))
            {
                __dispReferences_Events_SinkHelper = new EventInterfaces._dispReferences_Events_SinkHelper(this, _connectPoint);
                return;
            }
        }