Пример #1
0
 /// <summary>
 /// Remove an ACL entry from this group
 /// </summary>
 public bool RemoveEntry(AclEntry entry)
 {
     return(MtaServer.AclGroupRemoveACL(group, entry.ACL));
 }
Пример #2
0
 /// <summary>
 /// Add a new ACL entry to this group
 /// </summary>
 public bool AddEntry(AclEntry entry)
 {
     return(MtaServer.AclGroupAddACL(group, entry.ACL));
 }