1 write to InheritedObjectAceType
System.Security.AccessControl (1)
System\Security\AccessControl\ACL.cs (1)
2490objectAce.InheritedObjectAceType = ps_InheritedObjectAceType;
7 references to InheritedObjectAceType
System.IO.FileSystem.AccessControl (2)
System\Security\AccessControl\DirectoryObjectSecurity.cs (2)
207result.AddRule(AccessRuleFactory(iref, objectAce.AccessMask, objectAce.IsInherited, objectAce.InheritanceFlags, objectAce.PropagationFlags, type, objectAce.ObjectAceType, objectAce.InheritedObjectAceType)); 225result.AddRule(AuditRuleFactory(iref, objectAce.AccessMask, objectAce.IsInherited, objectAce.InheritanceFlags, objectAce.PropagationFlags, objectAce.AuditFlags, objectAce.ObjectAceType, objectAce.InheritedObjectAceType));
System.Security.AccessControl (5)
System\Security\AccessControl\ACE.cs (2)
1768(!InheritedObjectAceType.Equals(inheritedObjectType))) 2114InheritedObjectAceType.ToByteArray().CopyTo(binaryForm, baseOffset + offsetLocal);
System\Security\AccessControl\ACL.cs (3)
1259inheritedObjectType = originalAce.InheritedObjectAceType; 1274Guid inheritedObjectType = (ace is ObjectAce) ? ((ObjectAce)ace).InheritedObjectAceType : Guid.Empty; 1275Guid newInheritedObjectType = (newAce is ObjectAce) ? ((ObjectAce)newAce).InheritedObjectAceType : Guid.Empty;