Example #1
0
 /// <remarks/>
 public void CommitPlayerScoreAsync(PlayerScore playerScore, object userState)
 {
     if ((this.CommitPlayerScoreOperationCompleted == null))
     {
         this.CommitPlayerScoreOperationCompleted = new System.Threading.SendOrPostCallback(this.OnCommitPlayerScoreOperationCompleted);
     }
     this.InvokeAsync("CommitPlayerScore", new object[] {
         playerScore
     }, this.CommitPlayerScoreOperationCompleted, userState);
 }
Example #2
0
 /// <remarks/>
 public void CommitPlayerScoreAsync(PlayerScore playerScore)
 {
     this.CommitPlayerScoreAsync(playerScore, null);
 }
Example #3
0
 public void CommitPlayerScore(PlayerScore playerScore)
 {
     this.Invoke("CommitPlayerScore", new object[] {
         playerScore
     });
 }
Example #4
0
 /// <remarks/>
 public void CommitPlayerScoreAsync(PlayerScore playerScore, object userState) {
     if ((this.CommitPlayerScoreOperationCompleted == null)) {
         this.CommitPlayerScoreOperationCompleted = new System.Threading.SendOrPostCallback(this.OnCommitPlayerScoreOperationCompleted);
     }
     this.InvokeAsync("CommitPlayerScore", new object[] {
                 playerScore}, this.CommitPlayerScoreOperationCompleted, userState);
 }
Example #5
0
 /// <remarks/>
 public void CommitPlayerScoreAsync(PlayerScore playerScore) {
     this.CommitPlayerScoreAsync(playerScore, null);
 }
Example #6
0
 public void CommitPlayerScore(PlayerScore playerScore) {
     this.Invoke("CommitPlayerScore", new object[] {
                 playerScore});
 }