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)
1464
_acl = new
RawAcl
(revision, capacity);
1491
_acl = new
RawAcl
(rawAcl.Revision, rawAcl.Count);
2428
: base(isContainer, isDS, rawAcl ?? new
RawAcl
(isDS ? AclRevisionDS : AclRevision, 0), trusted, true)
System\Security\AccessControl\SecurityDescriptor.cs (2)
413
sacl = new
RawAcl
(binaryForm, offset + saclOffset);
426
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)
630
private readonly
RawAcl
_acl;
1473
internal CommonAcl(bool isContainer, bool isDS,
RawAcl
rawAcl, bool trusted, bool isDacl)
1520
internal
RawAcl
RawAcl
2296
public SystemAcl(bool isContainer, bool isDS,
RawAcl
rawAcl)
2303
internal SystemAcl(bool isContainer, bool isDS,
RawAcl
rawAcl, bool trusted)
2420
public DiscretionaryAcl(bool isContainer, bool isDS,
RawAcl
? rawAcl)
2427
internal DiscretionaryAcl(bool isContainer, bool isDS,
RawAcl
? rawAcl, bool trusted)
System\Security\AccessControl\SecurityDescriptor.cs (11)
302
private
RawAcl
? _sacl;
303
private
RawAcl
? _dacl;
316
private void CreateFromParts(ControlFlags flags, SecurityIdentifier? owner, SecurityIdentifier? group,
RawAcl
? systemAcl,
RawAcl
? discretionaryAcl)
327
public RawSecurityDescriptor(ControlFlags flags, SecurityIdentifier? owner, SecurityIdentifier? group,
RawAcl
? systemAcl,
RawAcl
? discretionaryAcl)
366
RawAcl
? sacl, dacl;
547
public
RawAcl
? SystemAcl
561
public
RawAcl
? DiscretionaryAcl
684
private CommonSecurityDescriptor(bool isContainer, bool isDS, ControlFlags flags, SecurityIdentifier? owner, SecurityIdentifier? group,
RawAcl
? systemAcl,
RawAcl
? discretionaryAcl)