Base:
6 references to CanRead
System.Net.Requests (1)
System\Net\NetworkStreamWrapper.cs (1)
60return _networkStream.CanRead;
System.Net.Sockets (5)
System\Net\Sockets\NetworkStream.cs (5)
223if (!CanRead) 249if (!CanRead) throw new InvalidOperationException(SR.net_writeonlystream); 419if (!CanRead) 541if (!CanRead) 562bool canRead = CanRead; // Prevent race with Dispose.