public void CreateEventBridge()
        {
            if (false == Factory.Settings.EnableEvents)
            {
                return;
            }

            if (null != _connectPoint)
            {
                return;
            }

            if (null == _activeSinkId)
            {
                _activeSinkId = SinkHelper.GetConnectionPoint(this, ref _connectPoint, Events._SectionInReportEvents_SinkHelper.Id, Events.DispSectionInReportEvents_SinkHelper.Id);
            }


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

            if (Events.DispSectionInReportEvents_SinkHelper.Id.Equals(_activeSinkId, StringComparison.InvariantCultureIgnoreCase))
            {
                _dispSectionInReportEvents_SinkHelper = new Events.DispSectionInReportEvents_SinkHelper(this, _connectPoint);
                return;
            }
        }
        public void DisposeEventBridge()
        {
            if (null != __SectionInReportEvents_SinkHelper)
            {
                __SectionInReportEvents_SinkHelper.Dispose();
                __SectionInReportEvents_SinkHelper = null;
            }
            if (null != _dispSectionInReportEvents_SinkHelper)
            {
                _dispSectionInReportEvents_SinkHelper.Dispose();
                _dispSectionInReportEvents_SinkHelper = null;
            }

            _connectPoint = null;
        }