SenseNet.ContentRepository.Storage.Security.PermissionEvaluator.GetEffectiveEntries C# (CSharp) Method

GetEffectiveEntries() private method

private GetEffectiveEntries ( string path ) : SenseNet.ContentRepository.Storage.Security.SecurityEntry[]
path string
return 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();
        }