/// <remarks/> public System.IAsyncResult BeginupdateGroup(string in0, RemoteGroup in1, System.AsyncCallback callback, object asyncState) { return this.BeginInvoke("updateGroup", new object[] { in0, in1}, callback, asyncState); }
public RemoteGroup updateGroup(string in0, RemoteGroup in1) { object[] results = this.Invoke("updateGroup", new object[] { in0, in1}); return ((RemoteGroup)(results[0])); }
public void removeUserFromGroup(string in0, RemoteGroup in1, RemoteUser in2) { this.Invoke("removeUserFromGroup", new object[] { in0, in1, in2}); }
/// <remarks/> public System.IAsyncResult BeginremoveUserFromGroup(string in0, RemoteGroup in1, RemoteUser in2, System.AsyncCallback callback, object asyncState) { return this.BeginInvoke("removeUserFromGroup", new object[] { in0, in1, in2}, callback, asyncState); }
public void addUserToGroup(string in0, RemoteGroup in1, RemoteUser in2) { this.Invoke("addUserToGroup", new object[] { in0, in1, in2}); }