4 overrides of BinaryLength
mscorlib (4)
system\security\accesscontrol\ace.cs (4)
826
public /* sealed */ override int
BinaryLength
1036
public override int
BinaryLength
1580
public /* sealed */ override int
BinaryLength
2109
public /* sealed */ override int
BinaryLength
16 references to BinaryLength
mscorlib (16)
system\security\accesscontrol\ace.cs (9)
114
int Length =
BinaryLength
; // Invokes the most derived property
126
else if ( binaryForm.Length - offset <
BinaryLength
)
395
if (((!( result is ObjectAce )) && (( binaryForm[offset + 2] << 0 ) + ( binaryForm[offset + 3] << 8 ) != result.
BinaryLength
))
400
|| (( result is ObjectAce ) && (( binaryForm[offset + 2] << 0 ) + ( binaryForm[offset + 3] << 8 ) != result.
BinaryLength
) && ((( binaryForm[offset + 2] << 0 ) + ( binaryForm[offset + 3] << 8 ) - 32 ) != result.
BinaryLength
)))
549
byte[] binaryForm = new byte[
BinaryLength
];
576
int thisLength = this.
BinaryLength
;
577
int aceLength = ace.
BinaryLength
;
603
int binaryLength =
BinaryLength
;
system\security\accesscontrol\acl.cs (7)
358
int aceLength = ace.
BinaryLength
;
480
binaryLength += ace.
BinaryLength
;
510
int aceLength = ace.
BinaryLength
;
548
if ( value.
BinaryLength
% 4 != 0 )
559
int newBinaryLength = BinaryLength - ( index < _aces.Count ? ( _aces[index] as GenericAce ).
BinaryLength
: 0 ) + value.
BinaryLength
;
582
if ( BinaryLength + ace.
BinaryLength
> MaxBinaryLength )