Exemplo n.º 1
0
 /// <remarks/>
 public System.IAsyncResult BeginAclSave(Acl acl, string objectTypeName, System.AsyncCallback callback, object asyncState)
 {
     return this.BeginInvoke("AclSave", new object[] {
                 acl,
                 objectTypeName}, callback, asyncState);
 }
Exemplo n.º 2
0
 /// <remarks/>
 public void AclSaveAsync(Acl acl, string objectTypeName)
 {
     this.AclSaveAsync(acl, objectTypeName, null);
 }
Exemplo n.º 3
0
 /// <remarks/>
 public void AclSaveAsync(Acl acl, string objectTypeName, object userState)
 {
     if ((this.AclSaveOperationCompleted == null)) {
         this.AclSaveOperationCompleted = new System.Threading.SendOrPostCallback(this.OnAclSaveOperationCompleted);
     }
     this.InvokeAsync("AclSave", new object[] {
                 acl,
                 objectTypeName}, this.AclSaveOperationCompleted, userState);
 }
Exemplo n.º 4
0
 public void AclSave(Acl acl, string objectTypeName)
 {
     this.Invoke("AclSave", new object[] {
                 acl,
                 objectTypeName});
 }