Example #1
0
        public virtual void DisposeEventBridge()
        {
            if (null != __FormEvents_SinkHelper)
            {
                __FormEvents_SinkHelper.Dispose();
                __FormEvents_SinkHelper = null;
            }

            _connectPoint = null;
        }
Example #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.AccessApi.Behind.EventContracts._FormEvents_SinkHelper.Id);
            }


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