Beispiel #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));
        }
Beispiel #2
0
 public static bool IsObjectInACLGroup(string theObject, MtaAclGroup theGroup)
 {
     throw new NotImplementedException();
 }
Beispiel #3
0
 public static string AclGroupGetName(MtaAclGroup aclGroup)
 {
     throw new NotImplementedException();
 }
Beispiel #4
0
 public static bool AclGroupRemoveObject(MtaAclGroup theGroup, string theObjectString)
 {
     throw new NotImplementedException();
 }
Beispiel #5
0
 public static bool AclGroupRemoveACL(MtaAclGroup theGroup, MtaAcl theACL)
 {
     throw new NotImplementedException();
 }
Beispiel #6
0
 public static bool AclGroupAddObject(MtaAclGroup theGroup, string theObjectName)
 {
     throw new NotImplementedException();
 }
Beispiel #7
0
 public static dynamic AclGroupListObjects(MtaAclGroup theGroup)
 {
     throw new NotImplementedException();
 }
Beispiel #8
0
 public static bool AclDestroyGroup(MtaAclGroup aclGroup)
 {
     throw new NotImplementedException();
 }
Beispiel #9
0
 public AclGroup(MtaAclGroup mtaAclGroup)
 {
     group = mtaAclGroup;
 }