Beispiel #1
0
        private void downloadLeagueGame_Click(object sender, RoutedEventArgs e)
        {
            GetMatchDetailDelegate downloadCNReplaysDelegate = new GetMatchDetailDelegate(this.downloadLeagueGameFunc);

            downloadCNReplaysDelegate.BeginInvoke(null, null);
        }
Beispiel #2
0
        private void downloadReplay_Click(object sender, RoutedEventArgs e)
        {
            GetMatchDetailDelegate getMatchDetailDelegate = new GetMatchDetailDelegate(this.getMatchDetail);

            getMatchDetailDelegate.BeginInvoke(null, null);
        }