public void DisposeEventBridge() { if (null != __NavigationEvent_SinkHelper) { __NavigationEvent_SinkHelper.Dispose(); __NavigationEvent_SinkHelper = null; } _connectPoint = null; }
public void CreateEventBridge() { if (false == Factory.Settings.EnableEvents) { return; } if (null != _connectPoint) { return; } if (null == _activeSinkId) { _activeSinkId = SinkHelper.GetConnectionPoint(this, ref _connectPoint, Events._NavigationEvent_SinkHelper.Id); } if (Events._NavigationEvent_SinkHelper.Id.Equals(_activeSinkId, StringComparison.InvariantCultureIgnoreCase)) { __NavigationEvent_SinkHelper = new Events._NavigationEvent_SinkHelper(this, _connectPoint); return; } }