Exemple #1
0
 public wsResponseObj runWSobj(wsRequestObj reqobj)
 {
     object[] results = this.Invoke("runWSobj", new object[] {
         reqobj
     });
     return((wsResponseObj)(results[0]));
 }
Exemple #2
0
 /// <remarks/>
 public void runWSobjAsync(wsRequestObj reqobj, object userState)
 {
     if ((this.runWSobjOperationCompleted == null))
     {
         this.runWSobjOperationCompleted = new System.Threading.SendOrPostCallback(this.OnrunWSobjOperationCompleted);
     }
     this.InvokeAsync("runWSobj", new object[] {
         reqobj
     }, this.runWSobjOperationCompleted, userState);
 }
Exemple #3
0
 /// <remarks/>
 public void runWSobjAsync(wsRequestObj reqobj)
 {
     this.runWSobjAsync(reqobj, null);
 }