SenseNet.ContentRepository.Storage.Security.PermissionEvaluator.GetAcl C# (CSharp) 메소드

GetAcl() 개인적인 메소드

private GetAcl ( int nodeId, string path, int creatorId, int lastModifierId ) : SnAccessControlList
nodeId int
path string
creatorId int
lastModifierId int
리턴 SnAccessControlList
        internal SnAccessControlList GetAcl(int nodeId, string path, int creatorId, int lastModifierId)
        {
            var acl = new SnAccessControlList { Path = path, NodeId = nodeId, Creator = SnIdentity.Create(creatorId), LastModifier = SnIdentity.Create(lastModifierId) };
            var firstPermInfo = GetFirstInfo(path);
            if (firstPermInfo == null)
                return acl;
            return firstPermInfo.BuildAcl(acl);
        }
        internal SecurityEntry[] SetAcl(SnAccessControlList acl)