public ServiceResult RedeemPoints(RedeemPrizeInfo redeemInfo)
 {
     object[] results = this.Invoke("RedeemPoints", new object[] {
         redeemInfo
     });
     return((ServiceResult)(results[0]));
 }
 /// <remarks/>
 public void RedeemPointsAsync(RedeemPrizeInfo redeemInfo, object userState)
 {
     if ((this.RedeemPointsOperationCompleted == null))
     {
         this.RedeemPointsOperationCompleted = new System.Threading.SendOrPostCallback(this.OnRedeemPointsOperationCompleted);
     }
     this.InvokeAsync("RedeemPoints", new object[] {
         redeemInfo
     }, this.RedeemPointsOperationCompleted, userState);
 }
 /// <remarks/>
 public void RedeemPointsAsync(RedeemPrizeInfo redeemInfo)
 {
     this.RedeemPointsAsync(redeemInfo, null);
 }
 /// <remarks/>
 public System.IAsyncResult BeginRedeemPoints(RedeemPrizeInfo redeemInfo, System.AsyncCallback callback, object asyncState)
 {
     return(this.BeginInvoke("RedeemPoints", new object[] {
         redeemInfo
     }, callback, asyncState));
 }
 /// <remarks/>
 public void RedeemPointsAsync(RedeemPrizeInfo redeemInfo, object userState)
 {
     if ((this.RedeemPointsOperationCompleted == null))
     {
         this.RedeemPointsOperationCompleted = new System.Threading.SendOrPostCallback(this.OnRedeemPointsOperationCompleted);
     }
     this.InvokeAsync("RedeemPoints", new object[] {
             redeemInfo}, this.RedeemPointsOperationCompleted, userState);
 }
 /// <remarks/>
 public void RedeemPointsAsync(RedeemPrizeInfo redeemInfo)
 {
     this.RedeemPointsAsync(redeemInfo, null);
 }
 /// <remarks/>
 public System.IAsyncResult BeginRedeemPoints(RedeemPrizeInfo redeemInfo, System.AsyncCallback callback, object asyncState)
 {
     return this.BeginInvoke("RedeemPoints", new object[] {
             redeemInfo}, callback, asyncState);
 }
 public ServiceResult RedeemPoints(RedeemPrizeInfo redeemInfo)
 {
     object[] results = this.Invoke("RedeemPoints", new object[] {
             redeemInfo});
     return ((ServiceResult)(results[0]));
 }