1 write to _binaryForm
System.Security.Principal.Windows (1)
System\Security\Principal\SID.cs (1)
362
_binaryForm
= new byte[1 + 1 + 6 + 4 * _subAuthorities.Length];
9 references to _binaryForm
System.Security.Principal.Windows (9)
System\Security\Principal\SID.cs (9)
315
[MemberNotNull(nameof(
_binaryForm
))]
368
_binaryForm
[0] = Revision;
369
_binaryForm
[1] = (byte)_subAuthorities.Length;
377
_binaryForm
[2 + i] = (byte)((((ulong)_identifierAuthority) >> ((5 - i) * 8)) & 0xFF);
388
_binaryForm
[8 + 4 * i + shift] = unchecked((byte)(((ulong)_subAuthorities[i]) >> (shift * 8)));
393
[MemberNotNull(nameof(
_binaryForm
))]
649
internal byte[] BinaryForm =>
_binaryForm
;
655
public int BinaryLength =>
_binaryForm
.Length;
926
_binaryForm
.CopyTo(binaryForm, offset);