Ejemplo n.º 1
0
 protected override void AbortRecursive()
 {
     base.AbortRecursive();
     if (_stepList != null)
     {
         _stepList.Abort();
     }
 }
Ejemplo n.º 2
0
        protected override void AbortRecursive()
        {
            base.AbortRecursive();
            _trySteps.Abort();

            if (_catchBlocks != null)
            {
                foreach (WxeStepList catchBlock in _catchBlocks)
                {
                    catchBlock.Abort();
                }
            }

            if (_finallySteps != null)
            {
                _finallySteps.Abort();
            }
        }