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)
191
headers.
ContentLength
= null;
Internal\Http\HttpProtocol.cs (3)
1202
responseHeaders.
ContentLength
= null;
1228
responseHeaders.
ContentLength
= 0;
1385
responseHeaders.
ContentLength
= 0;
22 references to ContentLength
Microsoft.AspNetCore.Server.Kestrel.Core (22)
Internal\Http\Http1MessageBody.cs (4)
148
&& headers.
ContentLength
.GetValueOrDefault() == 0
185
if (headers.
ContentLength
.HasValue)
210
if (headers.
ContentLength
.HasValue)
212
var contentLength = headers.
ContentLength
.Value;
Internal\Http\HttpHeaders.Generated.cs (1)
14819
output.WriteNumeric((ulong)
ContentLength
.GetValueOrDefault());
Internal\Http\HttpProtocol.cs (12)
890
responseHeaders.
ContentLength
.HasValue &&
891
_responseBytesWritten + count > responseHeaders.
ContentLength
.Value)
911
CoreStrings.FormatTooManyBytesWritten(_responseBytesWritten + count, responseHeaders.
ContentLength
!.Value));
925
responseHeaders.
ContentLength
.HasValue &&
926
_responseBytesWritten == responseHeaders.
ContentLength
.Value)
939
responseHeaders.
ContentLength
.HasValue &&
940
_responseBytesWritten < responseHeaders.
ContentLength
.Value)
950
CoreStrings.FormatTooFewBytesWritten(_responseBytesWritten, responseHeaders.
ContentLength
.Value));
1193
else if (responseHeaders.
ContentLength
.HasValue)
1197
if (responseHeaders.
ContentLength
.Value == 0)
1209
else if (StatusCode == StatusCodes.Status205ResetContent && responseHeaders.
ContentLength
.Value != 0)
1221
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)
868
InputRemaining = HttpRequestHeaders.
ContentLength
;