示例#1
0
文件: DoWait.cs 项目: ndestor/VoipP2T
 public DoWait(GenericStep _step)
     : base()
 {
     waitTimer = new System.Timers.Timer();
     WaitStep  = new GenericWaitStep();
     WaitStep  = (GenericWaitStep)_step;
     timeOut   = WaitStep.TimeOut;
 }
示例#2
0
        public override Object ToGeneric()
        {
            GenericWaitStep temp = new GenericWaitStep();

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

            return(temp);
        }