2 writes to _contentLength
System.Net.HttpListener (2)
System\Net\Managed\HttpListenerRequest.Managed.cs (2)
230
_contentLength
= parsedContentLength;
300
_contentLength
= -1;
7 references to _contentLength
System.Net.HttpListener (7)
System\Net\Managed\HttpListenerRequest.Managed.cs (7)
224
if (!success || (_clSet && parsedContentLength !=
_contentLength
))
256
if (
_contentLength
> 0)
257
length = (int)Math.Min(
_contentLength
, (long)length);
302
return
_contentLength
;
306
public bool HasEntityBody => (
_contentLength
> 0 || _isChunked);
318
if (_isChunked ||
_contentLength
> 0)
319
_inputStream = _context.Connection.GetRequestStream(_isChunked,
_contentLength
);