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