Example #1
0
        public ACL[] getACLs(Predicate predicate, ACE filter)
        {
            object[] results = this.Invoke("getACLs", new object[] {
                predicate,
                filter
            });

            return((ACL[])(results[0]));
        }
Example #2
0
 /// <remarks/>
 public void getACLsAsync(Predicate predicate, ACE filter, object userState)
 {
     if ((this.getACLsOperationCompleted == null))
     {
         this.getACLsOperationCompleted = new System.Threading.SendOrPostCallback(this.OngetACLsOperationCompleted);
     }
     this.InvokeAsync("getACLs", new object[] {
         predicate,
         filter
     }, this.getACLsOperationCompleted, userState);
 }
Example #3
0
 /// <remarks/>
 public void getACLsAsync(Predicate predicate, ACE filter)
 {
     this.getACLsAsync(predicate, filter, null);
 }
 /// <remarks/>
 public void removeACEsAsync(Predicate predicate, ACE[] aces, object userState) {
     if ((this.removeACEsOperationCompleted == null)) {
         this.removeACEsOperationCompleted = new System.Threading.SendOrPostCallback(this.OnremoveACEsOperationCompleted);
     }
     this.InvokeAsync("removeACEs", new object[] {
                 predicate,
                 aces}, this.removeACEsOperationCompleted, userState);
 }
 /// <remarks/>
 public void removeACEsAsync(Predicate predicate, ACE[] aces) {
     this.removeACEsAsync(predicate, aces, null);
 }
 /// <remarks/>
 public void addACEsAsync(Predicate predicate, ACE[] aces) {
     this.addACEsAsync(predicate, aces, null);
 }
 /// <remarks/>
 public void getACLsAsync(Predicate predicate, ACE filter, object userState) {
     if ((this.getACLsOperationCompleted == null)) {
         this.getACLsOperationCompleted = new System.Threading.SendOrPostCallback(this.OngetACLsOperationCompleted);
     }
     this.InvokeAsync("getACLs", new object[] {
                 predicate,
                 filter}, this.getACLsOperationCompleted, userState);
 }
 /// <remarks/>
 public void getACLsAsync(Predicate predicate, ACE filter) {
     this.getACLsAsync(predicate, filter, null);
 }
 public ACL[] getACLs(Predicate predicate, ACE filter) {
     object[] results = this.Invoke("getACLs", new object[] {
                 predicate,
                 filter});
     return ((ACL[])(results[0]));
 }