10 references to ContentLength
System.ServiceModel.Activation (1)
System\ServiceModel\Activation\HostedHttpRequestAsyncResult.cs (1)
968
return this.context.Request.
ContentLength
;
System.Web (9)
Abstractions\HttpRequestWrapper.cs (1)
112
return _httpRequest.
ContentLength
;
HttpBufferlessInputStream.cs (2)
51
_rawContent = new HttpRawUploadedContent(_fileThreshold, _context.Request.
ContentLength
);
54
int contentLength = _context.Request.
ContentLength
;
HttpRequest.cs (4)
974
if (
ContentLength
> limit) {
988
HttpRawUploadedContent rawContent = new HttpRawUploadedContent(fileThreshold,
ContentLength
);
1000
int remainingBytes = (
ContentLength
> 0) ?
ContentLength
- rawContent.Length : Int32.MaxValue;
ImplicitAsyncPreloadModule.cs (1)
60
|| (contentLength = request.
ContentLength
) > RuntimeConfig.GetConfig(context).HttpRuntime.MaxRequestLengthBytes
OutputCacheModule.cs (1)
268
contentLength = request.
ContentLength
;