/// <remarks/>
 public void UpdateACLAsync(long entityId, ACE[] entries, PrpgType prpgType, object userState) {
     if ((this.UpdateACLOperationCompleted == null)) {
         this.UpdateACLOperationCompleted = new System.Threading.SendOrPostCallback(this.OnUpdateACLOperationCompleted);
     }
     this.InvokeAsync("UpdateACL", new object[] {
                 entityId,
                 entries,
                 prpgType}, this.UpdateACLOperationCompleted, userState);
 }
 /// <remarks/>
 public System.IAsyncResult BeginUpdateACL(long entityId, ACE[] entries, PrpgType prpgType, System.AsyncCallback callback, object asyncState) {
     return this.BeginInvoke("UpdateACL", new object[] {
                 entityId,
                 entries,
                 prpgType}, callback, asyncState);
 }
 /// <remarks/>
 public void UpdateACLAsync(long entityId, ACE[] entries, PrpgType prpgType) {
     this.UpdateACLAsync(entityId, entries, prpgType, null);
 }
 public ACL UpdateACL(long entityId, ACE[] entries, PrpgType prpgType) {
     object[] results = this.Invoke("UpdateACL", new object[] {
                 entityId,
                 entries,
                 prpgType});
     return ((ACL)(results[0]));
 }