Ejemplo n.º 1
0
 /// <summary>
 /// Remove an ACL entry from this group
 /// </summary>
 public bool RemoveEntry(AclEntry entry)
 {
     return(MtaServer.AclGroupRemoveACL(group, entry.ACL));
 }
Ejemplo n.º 2
0
 /// <summary>
 /// Add a new ACL entry to this group
 /// </summary>
 public bool AddEntry(AclEntry entry)
 {
     return(MtaServer.AclGroupAddACL(group, entry.ACL));
 }