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

GetAllEntries() private method

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