/// <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); }
public Group GroupSave(Group group) { object[] results = this.Invoke("GroupSave", new object[] { group}); return ((Group)(results[0])); }
/// <remarks/> public void GroupSaveAsync(Group group) { this.GroupSaveAsync(group, null); }
/// <remarks/> public System.IAsyncResult BeginGroupSave(Group group, System.AsyncCallback callback, object asyncState) { return this.BeginInvoke("GroupSave", new object[] { group}, callback, asyncState); }