2 writes to _stream
System.Net.HttpListener (2)
System\Net\Managed\HttpConnection.cs (2)
82_stream = new NetworkStream(sock, false); 100_stream = _sslStream;
8 references to _stream
System.Net.HttpListener (8)
System\Net\Managed\HttpConnection.cs (8)
142public Stream ConnectedStream => _stream; 196_stream.BeginRead(_buffer, 0, BufferSize, s_onreadCallback, this); 216_requestStream = new ChunkedInputStream(_context, _stream, buffer, _position, length - _position); 220_requestStream = new HttpRequestStream(_stream, buffer, _position, length - _position, contentlength); 233return new HttpResponseStream(_stream, _context.Response, true); 235_responseStream = new HttpResponseStream(_stream, _context.Response, listener.IgnoreWriteExceptions); 261nread = _stream.EndRead(ares); 320_stream.BeginRead(_buffer!, 0, BufferSize, s_onreadCallback, this);