11 references to InheritOnly
System.Security.AccessControl (11)
System\Security\AccessControl\ACE.cs (3)
51
InheritanceFlags = ObjectInherit | ContainerInherit | NoPropagateInherit |
InheritOnly
,
162
flags |= AceFlags.
InheritOnly
; // ContainerInherit already turned on above
360
if ((AceFlags & AceFlags.
InheritOnly
) != 0)
System\Security\AccessControl\ACL.cs (8)
517
if ((aceFlags & AceFlags.
InheritOnly
) != 0)
549
aceFlags |= AceFlags.
InheritOnly
;
850
AceFlags.
InheritOnly
;
871
if ((ace.AceFlags & AceFlags.
InheritOnly
) != 0)
885
if (((ace.AceFlags & AceFlags.
InheritOnly
) != 0) &&
1815
if ((((ace.AceFlags & AceFlags.ContainerInherit) == 0) && ((flags & AceFlags.ContainerInherit) != 0) && ((flags & AceFlags.
InheritOnly
) != 0)) ||
1816
(((flags & AceFlags.ContainerInherit) == 0) && ((ace.AceFlags & AceFlags.ContainerInherit) != 0) && ((ace.AceFlags & AceFlags.
InheritOnly
) != 0)))
1824
if (((originalFlags & AceFlags.ContainerInherit) != 0) && ((originalFlags & AceFlags.
InheritOnly
) != 0) && ((flags & AceFlags.ContainerInherit) == 0))