Base:
6 references to CanWrite
System.Net.Requests (1)
System\Net\NetworkStreamWrapper.cs (1)
76return _networkStream.CanWrite;
System.Net.Sockets (5)
System\Net\Sockets\NetworkStream.cs (5)
287if (!CanWrite) 316if (!CanWrite) throw new InvalidOperationException(SR.net_readonlystream); 481if (!CanWrite) 602if (!CanWrite) 622bool canWrite = CanWrite; // Prevent race with Dispose.