Example #1
0
 /// <remarks/>
 public void AddOrgAsync(AddOrgRequest req) {
     this.AddOrgAsync(req, null);
 }
Example #2
0
 /// <remarks/>
 public void AddOrgAsync(AddOrgRequest req, object userState) {
     if ((this.AddOrgOperationCompleted == null)) {
         this.AddOrgOperationCompleted = new System.Threading.SendOrPostCallback(this.OnAddOrgOperationCompleted);
     }
     this.InvokeAsync("AddOrg", new object[] {
                 req}, this.AddOrgOperationCompleted, userState);
 }
Example #3
0
 public AddOrgResponse AddOrg(AddOrgRequest req) {
     object[] results = this.Invoke("AddOrg", new object[] {
                 req});
     return ((AddOrgResponse)(results[0]));
 }