private void downloadLeagueGame_Click(object sender, RoutedEventArgs e) { GetMatchDetailDelegate downloadCNReplaysDelegate = new GetMatchDetailDelegate(this.downloadLeagueGameFunc); downloadCNReplaysDelegate.BeginInvoke(null, null); }
private void downloadReplay_Click(object sender, RoutedEventArgs e) { GetMatchDetailDelegate getMatchDetailDelegate = new GetMatchDetailDelegate(this.getMatchDetail); getMatchDetailDelegate.BeginInvoke(null, null); }