7 instantiations of RawAcl
System.IO.FileSystem.AccessControl (2)
System\Security\AccessControl\DirectoryObjectSecurity.cs (2)
284
SecurityDescriptor.DiscretionaryAcl = new DiscretionaryAcl(IsContainer, IsDS, new
RawAcl
(binaryForm, 0));
425
SecurityDescriptor.SystemAcl = new SystemAcl(IsContainer, IsDS, new
RawAcl
(binaryForm, 0));
System.Security.AccessControl (5)
System\Security\AccessControl\ACL.cs (3)
1805
_acl = new
RawAcl
(revision, capacity);
1841
_acl = new
RawAcl
(rawAcl.Revision, rawAcl.Count);
3030
: base(isContainer, isDS, rawAcl ?? new
RawAcl
(isDS ? AclRevisionDS : AclRevision, 0), trusted, true)
System\Security\AccessControl\SecurityDescriptor.cs (2)
562
sacl = new
RawAcl
(binaryForm, offset + saclOffset);
578
dacl = new
RawAcl
(binaryForm, offset + daclOffset);
19 references to RawAcl
mscorlib (1)
src\runtime\src\libraries\shims\mscorlib\ref\mscorlib.cs (1)
841
[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Security.AccessControl.
RawAcl
))]
System.Security.AccessControl (18)
System\Security\AccessControl\ACL.cs (7)
810
private readonly
RawAcl
_acl;
1817
internal CommonAcl(bool isContainer, bool isDS,
RawAcl
rawAcl, bool trusted, bool isDacl)
1886
internal
RawAcl
RawAcl
2868
public SystemAcl(bool isContainer, bool isDS,
RawAcl
rawAcl)
2878
internal SystemAcl(bool isContainer, bool isDS,
RawAcl
rawAcl, bool trusted)
3019
public DiscretionaryAcl(bool isContainer, bool isDS,
RawAcl
? rawAcl)
3029
internal DiscretionaryAcl(bool isContainer, bool isDS,
RawAcl
? rawAcl, bool trusted)
System\Security\AccessControl\SecurityDescriptor.cs (11)
402
private
RawAcl
? _sacl;
403
private
RawAcl
? _dacl;
424
private void CreateFromParts(ControlFlags flags, SecurityIdentifier? owner, SecurityIdentifier? group,
RawAcl
? systemAcl,
RawAcl
? discretionaryAcl)
442
public RawSecurityDescriptor(ControlFlags flags, SecurityIdentifier? owner, SecurityIdentifier? group,
RawAcl
? systemAcl,
RawAcl
? discretionaryAcl)
497
RawAcl
? sacl, dacl;
730
public
RawAcl
? SystemAcl
747
public
RawAcl
? DiscretionaryAcl
908
private CommonSecurityDescriptor(bool isContainer, bool isDS, ControlFlags flags, SecurityIdentifier? owner, SecurityIdentifier? group,
RawAcl
? systemAcl,
RawAcl
? discretionaryAcl)