コード例 #1
0
 void _biometrics_IdentifyFailed(object sender, AuthenticationFailedEventArgs e)
 {
     // See comment above...
     Dispatcher.BeginInvoke(DispatcherPriority.ApplicationIdle,
                            new Action(() =>
     {
         Status.Text   = "Failed";
         UserName.Text = String.Empty;
         _session.Close();
         _session = _biometrics.OpenSession();
     }));
 }
コード例 #2
0
 void _biometrics_IdentifyFailed(object sender, AuthenticationFailedEventArgs e)
 {
     // See comment above...
     Dispatcher.BeginInvoke(DispatcherPriority.ApplicationIdle,
         new Action(() =>
                    {
                        Status.Text = "Failed";
                        UserName.Text = String.Empty;
                        _session.Close();
                        _session = _biometrics.OpenSession();
                    }));
 }
コード例 #3
0
 static void IdentifyFailed(object sender, AuthenticationFailedEventArgs args)
 {
     Console.WriteLine("Failed: {0} - {1}", args.Error, args.RejectDetail);
 }
コード例 #4
0
 static void IdentifyFailed(object sender, AuthenticationFailedEventArgs args)
 {
     Console.WriteLine("Failed: {0} - {1}", args.Error, args.RejectDetail);
 }