6 instantiations of SystemAcl
System.IO.FileSystem.AccessControl (1)
System\Security\AccessControl\DirectoryObjectSecurity.cs (1)
425
SecurityDescriptor.SystemAcl = new
SystemAcl
(IsContainer, IsDS, new RawAcl(binaryForm, 0));
System.Security.AccessControl (5)
System\Security\AccessControl\CommonObjectSecurity.cs (1)
371
_securityDescriptor.SystemAcl = new
SystemAcl
(IsContainer, IsDS, GenericAcl.AclRevision, 1);
System\Security\AccessControl\ObjectSecurity.cs (1)
107
_securityDescriptor.SystemAcl = new
SystemAcl
(IsContainer, IsDS, newOne.SystemAcl, true);
System\Security\AccessControl\SecurityDescriptor.cs (3)
909
: this(isContainer, isDS, flags, owner, group, systemAcl == null ? null : new
SystemAcl
(isContainer, isDS, systemAcl), discretionaryAcl == null ? null : new DiscretionaryAcl(isContainer, isDS, discretionaryAcl))
928
rawSecurityDescriptor.SystemAcl == null ? null : new
SystemAcl
(isContainer, isDS, rawSecurityDescriptor.SystemAcl, trusted),
1197
this.SystemAcl = new
SystemAcl
(this.IsContainer, this.IsDS, revision, trusted);
6 references to SystemAcl
mscorlib (1)
src\runtime\src\libraries\shims\mscorlib\ref\mscorlib.cs (1)
849
[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Security.AccessControl.
SystemAcl
))]
System.Security.AccessControl (5)
System\Security\AccessControl\NativeObjectSecurity.cs (1)
191
SystemAcl
? sacl = null;
System\Security\AccessControl\SecurityDescriptor.cs (4)
805
private
SystemAcl
? _sacl;
813
private void CreateFromParts(bool isContainer, bool isDS, ControlFlags flags, SecurityIdentifier? owner, SecurityIdentifier? group,
SystemAcl
? systemAcl, DiscretionaryAcl? discretionaryAcl)
903
public CommonSecurityDescriptor(bool isContainer, bool isDS, ControlFlags flags, SecurityIdentifier? owner, SecurityIdentifier? group,
SystemAcl
? systemAcl, DiscretionaryAcl? discretionaryAcl)
1026
public
SystemAcl
? SystemAcl