public async Task RedirectToExistingSolution(string rooturl, bool masterPage) { SolutionInfo solInfo = solutionService.GetSolution(rooturl); if (solInfo != null) { SolutionInfo copy = solInfo.Clone(); await Store.SetJSONAsync(AppConst.SOLUTION_OBJ, copy); App.Settings.CurrentSolution = copy; await App.Navigation.NavigateToLogin(masterPage); } }