2 writes to _aces
System.Security.AccessControl (2)
System\Security\AccessControl\ACL.cs (2)
221
_aces
= new List<GenericAce>(count);
286
_aces
= new List<GenericAce>(capacity);
11 references to _aces
System.Security.AccessControl (11)
System\Security\AccessControl\ACL.cs (11)
208
[MemberNotNull(nameof(
_aces
))]
236
_aces
.Add(ace);
305
get { return
_aces
.Count; }
317
GenericAce ace =
_aces
[i];
334
GenericAce ace =
_aces
[i];
363
return
_aces
[index];
382
int newBinaryLength = BinaryLength - (index <
_aces
.Count ?
_aces
[index].BinaryLength : 0) + value.BinaryLength;
389
_aces
[index] = value;
403
_aces
.Insert(index, ace);
409
_aces
.RemoveAt(index);