Exemplo n.º 1
0
 /// <remarks/>
 public void GroupSaveAsync(Group group, object userState)
 {
     if ((this.GroupSaveOperationCompleted == null)) {
         this.GroupSaveOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGroupSaveOperationCompleted);
     }
     this.InvokeAsync("GroupSave", new object[] {
                 group}, this.GroupSaveOperationCompleted, userState);
 }
Exemplo n.º 2
0
 public Group GroupSave(Group group)
 {
     object[] results = this.Invoke("GroupSave", new object[] {
                 group});
     return ((Group)(results[0]));
 }
Exemplo n.º 3
0
 /// <remarks/>
 public void GroupSaveAsync(Group group)
 {
     this.GroupSaveAsync(group, null);
 }
Exemplo n.º 4
0
 /// <remarks/>
 public System.IAsyncResult BeginGroupSave(Group group, System.AsyncCallback callback, object asyncState)
 {
     return this.BeginInvoke("GroupSave", new object[] {
                 group}, callback, asyncState);
 }