1 write to _isChunked
System.Net.HttpListener (1)
System\Net\Managed\HttpListenerRequest.Managed.cs (1)
182_isChunked = (t_encoding != null && string.Equals(t_encoding, "chunked", StringComparison.OrdinalIgnoreCase));
6 references to _isChunked
System.Net.HttpListener (6)
System\Net\Managed\HttpListenerRequest.Managed.cs (6)
184if (t_encoding != null && !_isChunked) 191if (!_isChunked && !_clSet) 305if (_isChunked) 312public bool HasEntityBody => (_contentLength > 0 || _isChunked); 324if (_isChunked || _contentLength > 0) 325_inputStream = _context.Connection.GetRequestStream(_isChunked, _contentLength);