Ejemplo n.º 1
0
 public void stubStart()
 {
     initPort();
     sp.Open();
     SPH_Running     = true;
     this.SPH_Thread = new Thread(new ThreadStart(this.Read));
     SPH_Thread.Start();
 }
Ejemplo n.º 2
0
 public void stubStart()
 {
     try {
         initPort();
         sp.Open();
         SPH_Running     = true;
         this.SPH_Thread = new Thread(new ThreadStart(this.Read));
         SPH_Thread.Start();
     } catch (Exception) {}
 }
Ejemplo n.º 3
0
 public void stubStart()
 {
     if (this.emv_buttons != RbaButtons.None)
     {
         try {
             initPort();
             sp.Open();
             SPH_Running           = true;
             this.bufferedCardType = "";
             this.sleeper.Reset();
             this.SPH_Thread = new Thread(new ThreadStart(this.Read));
             SPH_Thread.Start();
         } catch (Exception) {}
     }
 }