Example #1
0
 private void smartCardState_Authenticated(object sender, SmartCardEventArgs e)
 {
     Authenticated.InvokeIfAssigned(sender, e);
 }
Example #2
0
 private void smartCardState_Connected(object sender, SmartCardEventArgs e)
 {
     Connected.InvokeIfAssigned(sender, e);
 }
Example #3
0
 private void SmartCardState_Transmitting(object sender, SmartCardEventArgs e)
 {
     Transmitting.InvokeIfAssigned(sender, e);
 }
 private void _smartCard_Authenticated(object sender, SmartCardEventArgs e)
 {
     Console.WriteLine("{0} authenticated", string.Join('-', e.State.Stripe));
 }
 private void _smartCard_Connected(object sender, SmartCardEventArgs e)
 {
     Console.WriteLine("{0} connected = {1}", string.Join('-', e.State.Stripe), e.StateResult);
 }
 private void _smartCard_Transmitting(object sender, SmartCardEventArgs e)
 {
     Console.WriteLine("{0} transmitting = {1}", string.Join('-', e.State.Stripe), e.StateResult);
 }