void service_UpdateScoreCompleted(object sender, PhuThuyDuaThu.GameServices.UpdateScoreCompletedEventArgs e) { int point = e.Result; if (point > -1) MessageBox.Show("Đã lưu điểm cao nhất của bạn! Bạn được thưởng " + point + " kẹo!"); else MessageBox.Show("Có lỗi xảy ra!"); _isSubmitting = false; HtmlPage.Document.GetElementById("silverlightLoading").SetStyleAttribute("display", "none"); HtmlPage.Document.GetElementById("silverlightMask").SetStyleAttribute("display", "none"); this.ReplayGame(); }
void service_GetChallengeIDCompleted(object sender, PhuThuyDuaThu.GameServices.GetChallengeIDCompletedEventArgs e) { int challengeID = e.Result; string hash = CalculateHash(GlobalVarialble.Points, securityKey); service.UpdateScoreAsync(hash, challengeID, GlobalVarialble.Points); }