Ejemplo n.º 1
0
 private void stopAllButton_Click(object sender, EventArgs e)
 {
     foreach (object acc in accountList.Items)
     {
         LoLLauncherClient account = (LoLLauncherClient)acc;
         account.Disconnect();
     }
 }
Ejemplo n.º 2
0
 private void LoLLauncherHandler_FormClosing(object sender, FormClosingEventArgs e)
 {
     for (int i = 0; i < 5; i++)
     {
         foreach (object acc in accountList.Items)
         {
             LoLLauncherClient account = (LoLLauncherClient)acc;
             account.Disconnect();
         }
     }
 }