2 writes to _stream
System.Net.HttpListener (2)
System\Net\Managed\HttpConnection.cs (2)
81_stream = new NetworkStream(sock, false); 99_stream = _sslStream;
8 references to _stream
System.Net.HttpListener (8)
System\Net\Managed\HttpConnection.cs (8)
137public Stream ConnectedStream => _stream; 191_stream.BeginRead(_buffer, 0, BufferSize, s_onreadCallback, this); 211_requestStream = new ChunkedInputStream(_context, _stream, buffer, _position, length - _position); 215_requestStream = new HttpRequestStream(_stream, buffer, _position, length - _position, contentlength); 228return new HttpResponseStream(_stream, _context.Response, true); 230_responseStream = new HttpResponseStream(_stream, _context.Response, listener.IgnoreWriteExceptions); 256nread = _stream.EndRead(ares); 315_stream.BeginRead(_buffer!, 0, BufferSize, s_onreadCallback, this);