SenseNet.ContentRepository.Storage.Security.SecurityEntry.SecurityEntry C# (CSharp) Method

SecurityEntry() private method

private SecurityEntry ( int definedOnNodeId, int principalId, bool isInheritable, PermissionValue permissionValues ) : System
definedOnNodeId int
principalId int
isInheritable bool
permissionValues PermissionValue
return System
        internal SecurityEntry(int definedOnNodeId, int principalId, bool isInheritable, PermissionValue[] permissionValues)
            : base(principalId, isInheritable, permissionValues)
        {
            DefinedOnNodeId = definedOnNodeId;
            //_principalId = principalId;
            //_isInheritable = isInheritable;
            //_permissionValues = permissionValues;
        }