Example #1
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.AccessApi.Behind.EventContracts._SectionInReportEvents_SinkHelper.Id, NetOffice.AccessApi.Behind.EventContracts.DispSectionInReportEvents_SinkHelper.Id);
            }


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

            if (NetOffice.AccessApi.Behind.EventContracts.DispSectionInReportEvents_SinkHelper.Id.Equals(_activeSinkId, StringComparison.InvariantCultureIgnoreCase))
            {
                _dispSectionInReportEvents_SinkHelper = new NetOffice.AccessApi.Behind.EventContracts.DispSectionInReportEvents_SinkHelper(this, _connectPoint);
                return;
            }
        }
Example #2
0
        public virtual void DisposeEventBridge()
        {
            if (null != __SectionInReportEvents_SinkHelper)
            {
                __SectionInReportEvents_SinkHelper.Dispose();
                __SectionInReportEvents_SinkHelper = null;
            }
            if (null != _dispSectionInReportEvents_SinkHelper)
            {
                _dispSectionInReportEvents_SinkHelper.Dispose();
                _dispSectionInReportEvents_SinkHelper = null;
            }

            _connectPoint = null;
        }