2 writes to _aces
System.Security.AccessControl (2)
System\Security\AccessControl\ACL.cs (2)
313
_aces
= new List<GenericAce>(count);
396
_aces
= new List<GenericAce>(capacity);
11 references to _aces
System.Security.AccessControl (11)
System\Security\AccessControl\ACL.cs (11)
294
[MemberNotNull(nameof(
_aces
))]
331
_aces
.Add(ace);
428
get { return
_aces
.Count; }
443
GenericAce ace =
_aces
[i];
470
GenericAce ace =
_aces
[i];
505
return
_aces
[index];
527
int newBinaryLength = BinaryLength - (index <
_aces
.Count ?
_aces
[index].BinaryLength : 0) + value.BinaryLength;
534
_aces
[index] = value;
551
_aces
.Insert(index, ace);
560
_aces
.RemoveAt(index);