2 writes to _fullStreamLength
PresentationCore (2)
MS\Internal\IO\Packaging\NetStream.cs (2)
86
_fullStreamLength
= fullStreamLength;
555
_fullStreamLength
= _highWaterMark;
7 references to _fullStreamLength
PresentationCore (7)
MS\Internal\IO\Packaging\NetStream.cs (7)
325
if (
_fullStreamLength
< 0)
345
return
_fullStreamLength
;
554
if (
_fullStreamLength
< 0)
559
if (
_fullStreamLength
== _highWaterMark)
720
Debug.Assert(
_fullStreamLength
>= 0, "We assume _fullStreamLength is correct for Http cases - only Ftp can return bogus values");
1144
if (
_fullStreamLength
>= 0)
1145
block.Length = (int)Math.Min(block.Length,
_fullStreamLength
- block.Offset);