11 references to InheritOnly
System.Security.AccessControl (11)
System\Security\AccessControl\ACE.cs (3)
66
InheritanceFlags = ObjectInherit | ContainerInherit | NoPropagateInherit |
InheritOnly
,
226
flags |= AceFlags.
InheritOnly
; // ContainerInherit already turned on above
454
if ((this.AceFlags & AceFlags.
InheritOnly
) != 0)
System\Security\AccessControl\ACL.cs (8)
682
if ((aceFlags & AceFlags.
InheritOnly
) != 0)
719
aceFlags |= AceFlags.
InheritOnly
;
1051
AceFlags.
InheritOnly
;
1078
if ((ace.AceFlags & AceFlags.
InheritOnly
) != 0)
1095
if (((ace.AceFlags & AceFlags.
InheritOnly
) != 0) &&
2258
if ((((ace.AceFlags & AceFlags.ContainerInherit) == 0) && ((flags & AceFlags.ContainerInherit) != 0) && ((flags & AceFlags.
InheritOnly
) != 0)) ||
2259
(((flags & AceFlags.ContainerInherit) == 0) && ((ace.AceFlags & AceFlags.ContainerInherit) != 0) && ((ace.AceFlags & AceFlags.
InheritOnly
) != 0)))
2269
if (((originalFlags & AceFlags.ContainerInherit) != 0) && ((originalFlags & AceFlags.
InheritOnly
) != 0) && ((flags & AceFlags.ContainerInherit) == 0))