SenseNet.ContentRepository.Storage.Security.PermissionEvaluator.GetAllEntries C# (CSharp) Метод

GetAllEntries() приватный Метод

private GetAllEntries ( string path ) : SenseNet.ContentRepository.Storage.Security.SecurityEntry[]
path string
Результат 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)