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

GetExplicitEntry() private method

private GetExplicitEntry ( string path, int identity ) : SecurityEntry
path string
identity int
return SecurityEntry
        internal SecurityEntry GetExplicitEntry(string path, int identity)
        {
            PermissionInfo permInfo;
            if (!permissionTable.TryGetValue(path.ToLower(), out permInfo))
                return null;
            return permInfo.GetExplicitEntry(identity);
        }
        internal SecurityEntry[] GetEffectiveEntries(string path)