2 writes to _stream
System.Net.HttpListener (2)
System\Net\Managed\HttpConnection.cs (2)
82_stream = new NetworkStream(sock, false); 105_stream = _sslStream;
8 references to _stream
System.Net.HttpListener (8)
System\Net\Managed\HttpConnection.cs (8)
147public Stream ConnectedStream => _stream; 201_stream.BeginRead(_buffer, 0, BufferSize, s_onreadCallback, this); 221_requestStream = new ChunkedInputStream(_context, _stream, buffer, _position, length - _position); 225_requestStream = new HttpRequestStream(_stream, buffer, _position, length - _position, contentlength); 238return new HttpResponseStream(_stream, _context.Response, true); 240_responseStream = new HttpResponseStream(_stream, _context.Response, listener.IgnoreWriteExceptions); 266nread = _stream.EndRead(ares); 325_stream.BeginRead(_buffer!, 0, BufferSize, s_onreadCallback, this);