11 references to InheritOnly
mscorlib (11)
system\security\accesscontrol\ace.cs (3)
67InheritanceFlags = ObjectInherit | ContainerInherit | NoPropagateInherit | InheritOnly, 231flags |= AceFlags.InheritOnly; // ContainerInherit already turned on above 484if (( this.AceFlags & AceFlags.InheritOnly ) != 0 )
system\security\accesscontrol\acl.cs (8)
712if (( aceFlags & AceFlags.InheritOnly ) != 0 ) 749aceFlags |= AceFlags.InheritOnly; 1086AceFlags.InheritOnly; 1113if (( ace.AceFlags & AceFlags.InheritOnly ) != 0 ) 1130if ((( ace.AceFlags & AceFlags.InheritOnly ) != 0 ) && 2334if (((( ace.AceFlags & AceFlags.ContainerInherit ) == 0 ) && (( flags & AceFlags.ContainerInherit ) != 0 ) && (( flags & AceFlags.InheritOnly ) != 0 )) || 2335((( flags & AceFlags.ContainerInherit ) == 0 ) && (( ace.AceFlags & AceFlags.ContainerInherit ) != 0 ) && (( ace.AceFlags & AceFlags.InheritOnly ) != 0))) 2345if ((( originalFlags & AceFlags.ContainerInherit ) != 0 ) && (( originalFlags & AceFlags.InheritOnly ) != 0 ) && (( flags & AceFlags.ContainerInherit ) == 0 ))