Beispiel #1
0
        protected ConfigureChain CfgChainUpdate(ConfigureChain newCommand = null)
        {
            this.cfgChain  = null;
            this.cfgChain += newCommand;

            return(this.cfgChain);
        }
Beispiel #2
0
        protected void ProceedWith(bool state, ConfigureChain ifTrue, ConfigureChain ifFalse)
        {
            switch (state)
            {
            case true:
                base.CfgChainUpdate(ifTrue);
                break;

            case false:
                base.CfgChainUpdate(ifFalse);
                break;
            }
        }
Beispiel #3
0
 protected void ProceedWith(ConfigureChain nextMethod)
 {
     base.cfgChain = base.CfgChainUpdate(nextMethod);
 }