2 writes to _fullStreamLength
PresentationCore (2)
Core\CSharp\MS\Internal\IO\Packaging\NetStream.cs (2)
108
_fullStreamLength
= fullStreamLength;
599
_fullStreamLength
= _highWaterMark;
7 references to _fullStreamLength
PresentationCore (7)
Core\CSharp\MS\Internal\IO\Packaging\NetStream.cs (7)
347
if (
_fullStreamLength
< 0)
367
return
_fullStreamLength
;
598
if (
_fullStreamLength
< 0)
603
if (
_fullStreamLength
== _highWaterMark)
786
Debug.Assert(
_fullStreamLength
>= 0, "We assume _fullStreamLength is correct for Http cases - only Ftp can return bogus values");
1217
if (
_fullStreamLength
>= 0)
1218
block.Length = (int)Math.Min(block.Length,
_fullStreamLength
- block.Offset);