/// <remarks/>
 public void editUserAsync(string in0, RemoteUser in1, object userState) {
     if ((this.editUserOperationCompleted == null)) {
         this.editUserOperationCompleted = new System.Threading.SendOrPostCallback(this.OneditUserOperationCompleted);
     }
     this.InvokeAsync("editUser", new object[] {
                                                   in0,
                                                   in1}, this.editUserOperationCompleted, userState);
 }
 /// <remarks/>
 public void editUserAsync(string in0, RemoteUser in1) {
     this.editUserAsync(in0, in1, null);
 }
 /// <remarks/>
 public System.IAsyncResult BegineditUser(string in0, RemoteUser in1, System.AsyncCallback callback, object asyncState) {
     return this.BeginInvoke("editUser", new object[] {
                                                          in0,
                                                          in1}, callback, asyncState);
 }
 public bool editUser(string in0, RemoteUser in1) {
     object[] results = this.Invoke("editUser", new object[] {
                                                                 in0,
                                                                 in1});
     return ((bool)(results[0]));
 }
 /// <remarks/>
 public void addUserAsync(string in0, RemoteUser in1, string in2) {
     this.addUserAsync(in0, in1, in2, null);
 }
 public void addUser(string in0, RemoteUser in1, string in2) {
     this.Invoke("addUser", new object[] {
                                             in0,
                                             in1,
                                             in2});
 }