Exemple #1
0
 public MessageResponse AddStatOverview(string APIKey, StatOverView oStatOverview)
 {
     object[] results = this.Invoke("AddStatOverview", new object[] {
         APIKey,
         oStatOverview
     });
     return((MessageResponse)(results[0]));
 }
Exemple #2
0
 /// <remarks/>
 public void AddStatOverviewAsync(string APIKey, StatOverView oStatOverview, object userState)
 {
     if ((this.AddStatOverviewOperationCompleted == null))
     {
         this.AddStatOverviewOperationCompleted = new System.Threading.SendOrPostCallback(this.OnAddStatOverviewOperationCompleted);
     }
     this.InvokeAsync("AddStatOverview", new object[] {
         APIKey,
         oStatOverview
     }, this.AddStatOverviewOperationCompleted, userState);
 }
Exemple #3
0
 /// <remarks/>
 public void AddStatOverviewAsync(string APIKey, StatOverView oStatOverview)
 {
     this.AddStatOverviewAsync(APIKey, oStatOverview, null);
 }
 /// <remarks/>
 public void AddStatOverviewAsync(string APIKey, StatOverView oStatOverview, object userState) {
     if ((this.AddStatOverviewOperationCompleted == null)) {
         this.AddStatOverviewOperationCompleted = new System.Threading.SendOrPostCallback(this.OnAddStatOverviewOperationCompleted);
     }
     this.InvokeAsync("AddStatOverview", new object[] {
                 APIKey,
                 oStatOverview}, this.AddStatOverviewOperationCompleted, userState);
 }
 /// <remarks/>
 public void AddStatOverviewAsync(string APIKey, StatOverView oStatOverview) {
     this.AddStatOverviewAsync(APIKey, oStatOverview, null);
 }
 public MessageResponse AddStatOverview(string APIKey, StatOverView oStatOverview) {
     object[] results = this.Invoke("AddStatOverview", new object[] {
                 APIKey,
                 oStatOverview});
     return ((MessageResponse)(results[0]));
 }