Ejemplo n.º 1
0
 /// <remarks/>
 public void createGroupAsync(string in0, string in1, RemoteUser in2) {
     this.createGroupAsync(in0, in1, in2, null);
 }
Ejemplo n.º 2
0
 /// <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);
 }
Ejemplo n.º 3
0
 public RemoteGroup createGroup(string in0, string in1, RemoteUser in2) {
     object[] results = this.Invoke("createGroup", new object[] {
                 in0,
                 in1,
                 in2});
     return ((RemoteGroup)(results[0]));
 }
Ejemplo n.º 4
0
 /// <remarks/>
 public void addUserToGroupAsync(string in0, RemoteGroup in1, RemoteUser in2) {
     this.addUserToGroupAsync(in0, in1, in2, null);
 }
Ejemplo n.º 5
0
 public void addUserToGroup(string in0, RemoteGroup in1, RemoteUser in2) {
     this.Invoke("addUserToGroup", new object[] {
                 in0,
                 in1,
                 in2});
 }
Ejemplo n.º 6
0
 /// <remarks/>
 public void removeUserFromGroupAsync(string in0, RemoteGroup in1, RemoteUser in2) {
     this.removeUserFromGroupAsync(in0, in1, in2, null);
 }
Ejemplo n.º 7
0
 public void removeUserFromGroup(string in0, RemoteGroup in1, RemoteUser in2) {
     this.Invoke("removeUserFromGroup", new object[] {
                 in0,
                 in1,
                 in2});
 }