3 writes to _length
PresentationCore (3)
Core\CSharp\MS\Internal\IO\Packaging\NetStream.cs (3)
876
_length
= length;
913
_length
= value;
960
_length
= (int)(Math.Max(_offset + _length, b._offset + b._length) - _offset);
10 references to _length
PresentationCore (10)
Core\CSharp\MS\Internal\IO\Packaging\NetStream.cs (10)
886
return _offset +
_length
;
908
return
_length
;
930
if (
_length
== b.
_length
)
933
if (
_length
< b.
_length
)
947
return (_offset +
_length
- b._offset >= 0);
949
return (b._offset + b.
_length
- _offset >= 0);
960
_length = (int)(Math.Max(_offset +
_length
, b._offset + b.
_length
) - _offset);