7 instantiations of SystemAcl
mscorlib (7)
system\security\accesscontrol\commonobjectsecurity.cs (1)
367_securityDescriptor.SystemAcl = new SystemAcl( IsContainer, IsDS, GenericAcl.AclRevision, 1 );
system\security\accesscontrol\directoryobjectsecurity.cs (2)
399_securityDescriptor.SystemAcl = new SystemAcl(IsContainer, IsDS, GenericAcl.AclRevisionDS, 1); 417_securityDescriptor.SystemAcl = new SystemAcl(IsContainer, IsDS, new RawAcl(binaryForm, 0));
system\security\accesscontrol\objectsecurity.cs (1)
119_securityDescriptor.SystemAcl = new SystemAcl( IsContainer, IsDS, newOne.SystemAcl, true );
system\security\accesscontrol\securitydescriptor.cs (3)
945: this( isContainer, isDS, flags, owner, group, systemAcl == null ? null : new SystemAcl( isContainer, isDS, systemAcl ), discretionaryAcl == null ? null : new DiscretionaryAcl( isContainer, isDS, discretionaryAcl )) 968rawSecurityDescriptor.SystemAcl == null ? null : new SystemAcl( isContainer, isDS, rawSecurityDescriptor.SystemAcl, trusted ), 1251this.SystemAcl = new SystemAcl(this.IsContainer, this.IsDS, revision, trusted);
5 references to SystemAcl
mscorlib (5)
system\security\accesscontrol\nativeobjectsecurity.cs (1)
194SystemAcl sacl = null;
system\security\accesscontrol\securitydescriptor.cs (4)
838private SystemAcl _sacl; 846private void CreateFromParts( bool isContainer, bool isDS, ControlFlags flags, SecurityIdentifier owner, SecurityIdentifier group, SystemAcl systemAcl, DiscretionaryAcl discretionaryAcl ) 939public CommonSecurityDescriptor( bool isContainer, bool isDS, ControlFlags flags, SecurityIdentifier owner, SecurityIdentifier group, SystemAcl systemAcl, DiscretionaryAcl discretionaryAcl ) 1066public SystemAcl SystemAcl