Implemented interface member:
property
ContentLength
Microsoft.AspNetCore.Http.IHeaderDictionary.ContentLength
4 writes to ContentLength
Microsoft.AspNetCore.Server.Kestrel.Core (4)
Internal\Http\Http1MessageBody.cs (1)
186
headers.
ContentLength
= null;
Internal\Http\HttpProtocol.cs (3)
1179
responseHeaders.
ContentLength
= null;
1205
responseHeaders.
ContentLength
= 0;
1359
responseHeaders.
ContentLength
= 0;
22 references to ContentLength
Microsoft.AspNetCore.Server.Kestrel.Core (22)
Internal\Http\Http1MessageBody.cs (4)
146
&& headers.
ContentLength
.GetValueOrDefault() == 0
182
if (headers.
ContentLength
.HasValue)
194
if (headers.
ContentLength
.HasValue)
196
var contentLength = headers.
ContentLength
.Value;
Internal\Http\HttpHeaders.Generated.cs (1)
14819
output.WriteNumeric((ulong)
ContentLength
.GetValueOrDefault());
Internal\Http\HttpProtocol.cs (12)
867
responseHeaders.
ContentLength
.HasValue &&
868
_responseBytesWritten + count > responseHeaders.
ContentLength
.Value)
888
CoreStrings.FormatTooManyBytesWritten(_responseBytesWritten + count, responseHeaders.
ContentLength
!.Value));
902
responseHeaders.
ContentLength
.HasValue &&
903
_responseBytesWritten == responseHeaders.
ContentLength
.Value)
916
responseHeaders.
ContentLength
.HasValue &&
917
_responseBytesWritten < responseHeaders.
ContentLength
.Value)
927
CoreStrings.FormatTooFewBytesWritten(_responseBytesWritten, responseHeaders.
ContentLength
.Value));
1170
else if (responseHeaders.
ContentLength
.HasValue)
1174
if (responseHeaders.
ContentLength
.Value == 0)
1186
else if (StatusCode == StatusCodes.Status205ResetContent && responseHeaders.
ContentLength
.Value != 0)
1198
else if (!hasTransferEncoding && !responseHeaders.
ContentLength
.HasValue)
Internal\Http\HttpRequestHeaders.cs (2)
246
_next = GetNext(_currentBits, collection.
ContentLength
.HasValue);
265
_next = GetNext(_currentBits, _collection.
ContentLength
.HasValue);
Internal\Http\HttpResponseHeaders.cs (2)
154
_next = GetNext(_currentBits, collection.
ContentLength
.HasValue);
176
_next = GetNext(_currentBits, _collection.
ContentLength
.HasValue);
Internal\Http3\Http3Stream.cs (1)
818
InputRemaining = HttpRequestHeaders.
ContentLength
;