3 writes to m_BytesToSkip
System (3)
net\System\Net\Cache\_CacheStreams.cs (3)
383
m_BytesToSkip
= bytesToSkip;
457
m_BytesToSkip
-= bytes;
612
m_BytesToSkip
-= userResult.Count;
14 references to m_BytesToSkip
System (14)
net\System\Net\Cache\_CacheStreams.cs (14)
402
return WrappedStream.Length -
m_BytesToSkip
;
408
return WrappedStream.Position -
m_BytesToSkip
;
449
if (
m_BytesToSkip
!= 0L) {
452
while (
m_BytesToSkip
!= 0L) {
453
int bytes = WrappedStream.Read(tempBuffer, 0, (
m_BytesToSkip
< (long)tempBuffer.Length? (int)
m_BytesToSkip
: tempBuffer.Length));
611
if (
m_BytesToSkip
!= 0L) {
613
userResult.Count =
m_BytesToSkip
< (long)userResult.Buffer.Length? (int)
m_BytesToSkip
: userResult.Buffer.Length;
614
if (
m_BytesToSkip
== 0L) {
678
if (m_ShadowStreamIsDead &&
m_BytesToSkip
== 0L) {
683
if (
m_BytesToSkip
!= 0L) {
686
0,
m_BytesToSkip
< (long) buffer.Length? (int)
m_BytesToSkip
: buffer.Length);