コード例 #1
0
ファイル: EidReader.cs プロジェクト: svn2github/ehi
 protected void OnReaderAction(DeviceEventArgs e)
 {
     if (ReaderAction != null) ReaderAction(this, e);
 }
コード例 #2
0
ファイル: EidWrapperTest.cs プロジェクト: svn2github/ehi
 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();
 }
コード例 #3
0
ファイル: EidReader.cs プロジェクト: svn2github/ehi
 protected void OnCardAction(DeviceEventArgs e)
 {
     if (CardAction != null) CardAction(this, e);
 }