4 writes to m_HeadEOF
System (4)
net\System\Net\Cache\_CacheStreams.cs (4)
68
m_HeadEOF
= headStream == Stream.Null;
137
m_HeadEOF
= true;
193
m_HeadEOF
= true;
242
m_HeadEOF
= true;
12 references to m_HeadEOF
System (12)
net\System\Net\Cache\_CacheStreams.cs (12)
72
get {return
m_HeadEOF
? WrappedStream.CanRead: m_HeadStream.CanRead;}
86
return WrappedStream.Length + (
m_HeadEOF
? m_HeadLength: m_HeadStream.Length);
92
return WrappedStream.Position + (
m_HeadEOF
? m_HeadLength: m_HeadStream.Position);
130
if (
m_HeadEOF
) {
181
if (!
m_HeadEOF
) {
191
if (!
m_HeadEOF
&& count == 0 && userResult.Count != 0) {
224
if (
m_HeadEOF
) {
276
GlobalLog.Assert(
m_HeadEOF
, "CombinedReadStream::EndRead|m_HeadEOF is false and asyncResult is not of InnerAsyncResult type {0).", asyncResult.GetType().FullName);
277
return
m_HeadEOF
? WrappedStream.EndRead(asyncResult): m_HeadStream.EndRead(asyncResult);
308
if (!
m_HeadEOF
) {
342
return (
m_HeadEOF
) ? WrappedStream.ReadTimeout : m_HeadStream.ReadTimeout;
351
return (
m_HeadEOF
) ? WrappedStream.WriteTimeout : m_HeadStream.WriteTimeout;