Ejemplo n.º 1
0
 protected void OnReaderAction(DeviceEventArgs e)
 {
     if (ReaderAction != null) ReaderAction(this, e);
 }
Ejemplo n.º 2
0
 void target_ReaderAction(object sender, DeviceEventArgs e)
 {
     System.Console.Out.WriteLine(String.Format("Reader {2} status changed from {0} to {1}", e.PreviousState, e.NewState, e.DeviceName));
     waitChange.Set();
 }
Ejemplo n.º 3
0
 protected void OnCardAction(DeviceEventArgs e)
 {
     if (CardAction != null) CardAction(this, e);
 }