Exemplo n.º 1
0
 public DoHangup(GenericStep _step)
     : base()
 {
     HangupStep = new GenericHangupStep();
     HangupStep = (GenericHangupStep)_step;
     timeOut    = HangupStep.TimeOut;
 }
Exemplo n.º 2
0
 public ReceiveHangup(GenericStep _step)
     : base()
 {
     hangupStep = new GenericHangupStep();
     hangupStep = (GenericHangupStep)_step;
     timeOut    = hangupStep.TimeOut;
 }
Exemplo n.º 3
0
        public override Object ToGeneric()
        {
            GenericHangupStep temp = new GenericHangupStep();

            temp.NameId            = this.NameId;
            temp.TesterDestination = this.TesterDestination;
            temp.TesterSource      = this.TesterSource;
            temp.TimeOut           = this.TimeOut;
            temp.NumStep           = this.NumStep;

            return(temp);
        }