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

GetEffectiveEntries() 개인적인 메소드

private GetEffectiveEntries ( string path ) : SenseNet.ContentRepository.Storage.Security.SecurityEntry[]
path string
리턴 SenseNet.ContentRepository.Storage.Security.SecurityEntry[]
        internal SecurityEntry[] GetEffectiveEntries(string path)
        {
            var firstPermInfo = GetFirstInfo(path);
            if (firstPermInfo == null)
                return EmptyEntryArray;
            return firstPermInfo.GetEffectiveEntries(firstPermInfo.Path == path).ToArray();
        }