Ejemplo n.º 1
0
        /// <summary>
        /// Get an ACL group instance from the name of the group
        /// </summary>
        public static AclGroup Get(string name)
        {
            MtaAclGroup result = MtaServer.AclGetGroup(name);

            if (result == null)
            {
                throw new NullElementException("No ACL entry with the name " + name + " can be found");
            }
            return(new AclGroup(result));
        }
Ejemplo n.º 2
0
 public static bool IsObjectInACLGroup(string theObject, MtaAclGroup theGroup)
 {
     throw new NotImplementedException();
 }
Ejemplo n.º 3
0
 public static string AclGroupGetName(MtaAclGroup aclGroup)
 {
     throw new NotImplementedException();
 }
Ejemplo n.º 4
0
 public static bool AclGroupRemoveObject(MtaAclGroup theGroup, string theObjectString)
 {
     throw new NotImplementedException();
 }
Ejemplo n.º 5
0
 public static bool AclGroupRemoveACL(MtaAclGroup theGroup, MtaAcl theACL)
 {
     throw new NotImplementedException();
 }
Ejemplo n.º 6
0
 public static bool AclGroupAddObject(MtaAclGroup theGroup, string theObjectName)
 {
     throw new NotImplementedException();
 }
Ejemplo n.º 7
0
 public static dynamic AclGroupListObjects(MtaAclGroup theGroup)
 {
     throw new NotImplementedException();
 }
Ejemplo n.º 8
0
 public static bool AclDestroyGroup(MtaAclGroup aclGroup)
 {
     throw new NotImplementedException();
 }
Ejemplo n.º 9
0
 public AclGroup(MtaAclGroup mtaAclGroup)
 {
     group = mtaAclGroup;
 }