Example #1
0
        public override void Emit(SsisEmitterContext context)
        {
            _eventHandler = (DTS.DtsEventHandler)_hostExecutable.DtsEventsProvider.EventHandlers.Add(_eventName);

            context = new SsisEmitterContext(context.Package, this, context.ProjectManager);
            foreach (PhysicalObject po in this.Children)
            {
                po.Initialize(context);
                po.Emit(context);
            }
        }
Example #2
0
        public override void Emit(SsisEmitterContext context)
        {
            _eventHandler = (DTS.DtsEventHandler)_hostExecutable.DtsEventsProvider.EventHandlers.Add(_eventName);

            context = new SsisEmitterContext(context.Package, this, context.ProjectManager);
            foreach (PhysicalObject po in this.Children)
            {
                po.Initialize(context);
                po.Emit(context);
            }
        }