/// <remarks/> public void updateUserAsync(string in0, RemoteUser in1) { this.updateUserAsync(in0, in1, null); }
/// <remarks/> public void updateUserAsync(string in0, RemoteUser in1, object userState) { if ((this.updateUserOperationCompleted == null)) { this.updateUserOperationCompleted = new System.Threading.SendOrPostCallback(this.OnupdateUserOperationCompleted); } this.InvokeAsync("updateUser", new object[] { in0, in1}, this.updateUserOperationCompleted, userState); }
/// <remarks/> public void createGroupAsync(string in0, string in1, RemoteUser in2, object userState) { if ((this.createGroupOperationCompleted == null)) { this.createGroupOperationCompleted = new System.Threading.SendOrPostCallback(this.OncreateGroupOperationCompleted); } this.InvokeAsync("createGroup", new object[] { in0, in1, in2}, this.createGroupOperationCompleted, userState); }
public RemoteUser updateUser(string in0, RemoteUser in1) { object[] results = this.Invoke("updateUser", new object[] { in0, in1}); return ((RemoteUser)(results[0])); }
public RemoteGroup createGroup(string in0, string in1, RemoteUser in2) { object[] results = this.Invoke("createGroup", new object[] { in0, in1, in2}); return ((RemoteGroup)(results[0])); }
/// <remarks/> public void createGroupAsync(string in0, string in1, RemoteUser in2) { this.createGroupAsync(in0, in1, in2, null); }
/// <remarks/> public void setUserPasswordAsync(string in0, RemoteUser in1, string in2) { this.setUserPasswordAsync(in0, in1, in2, null); }
/// <remarks/> public void setUserPasswordAsync(string in0, RemoteUser in1, string in2, object userState) { if ((this.setUserPasswordOperationCompleted == null)) { this.setUserPasswordOperationCompleted = new System.Threading.SendOrPostCallback(this.OnsetUserPasswordOperationCompleted); } this.InvokeAsync("setUserPassword", new object[] { in0, in1, in2}, this.setUserPasswordOperationCompleted, userState); }
public void setUserPassword(string in0, RemoteUser in1, string in2) { this.Invoke("setUserPassword", new object[] { in0, in1, in2}); }
/// <remarks/> public void removeUserFromGroupAsync(string in0, RemoteGroup in1, RemoteUser in2) { this.removeUserFromGroupAsync(in0, in1, in2, null); }
public void removeUserFromGroup(string in0, RemoteGroup in1, RemoteUser in2) { this.Invoke("removeUserFromGroup", new object[] { in0, in1, in2}); }
/// <remarks/> public void addUserToGroupAsync(string in0, RemoteGroup in1, RemoteUser in2) { this.addUserToGroupAsync(in0, in1, in2, null); }
public void addUserToGroup(string in0, RemoteGroup in1, RemoteUser in2) { this.Invoke("addUserToGroup", new object[] { in0, in1, in2}); }