/// <summary> Request account check in background </summary> public void RequestStatusCheck() { Task.Run(async() => { try { if (!__SessionKeeper.IsLoggedIn()) { return; // User not loged-in () no registered sesion - nonthing to check } await __Service.AccountStatus(); } catch (Exception ex) { Logging.Info($"{ex}"); } }); }