private void SendRetryBluestacksLoginRequest(string vmName)
 {
     try
     {
         Logger.Info("Sending retry call for token to android, since token is not received successfully");
         this.mSuccess = new bool?();
         this.StartingTimer();
         BlueStacksUIUtils.SendBluestacksLoginRequest(vmName);
     }
     catch (Exception ex)
     {
         Logger.Error("Exception in SendRetryBluestacksLoginRequest: " + ex.ToString());
     }
 }