23 references to BoundaryType
Microsoft.AspNetCore.Server.HttpSys (23)
RequestProcessing\Request.cs (8)
29
private
BoundaryType
_contentBoundaryType;
46
_contentBoundaryType =
BoundaryType
.None;
213
if (_contentBoundaryType ==
BoundaryType
.None)
219
_contentBoundaryType =
BoundaryType
.Chunked;
227
_contentBoundaryType =
BoundaryType
.ContentLength;
232
_contentBoundaryType =
BoundaryType
.Invalid;
287
return (ContentLength.HasValue && ContentLength.Value > 0 && _contentBoundaryType ==
BoundaryType
.ContentLength)
288
|| _contentBoundaryType ==
BoundaryType
.Chunked;
RequestProcessing\Response.cs (9)
32
private
BoundaryType
_boundaryType;
47
_boundaryType =
BoundaryType
.None;
213
internal
BoundaryType
BoundaryType
421
_boundaryType =
BoundaryType
.ContentLength;
435
_boundaryType =
BoundaryType
.PassThrough;
443
_boundaryType =
BoundaryType
.ContentLength;
448
_boundaryType =
BoundaryType
.Chunked;
456
_boundaryType =
BoundaryType
.Close;
659
_boundaryType =
BoundaryType
.Close;
RequestProcessing\ResponseBody.cs (6)
193
var chunked = _requestContext.Response.BoundaryType ==
BoundaryType
.Chunked;
343
var chunked = _requestContext.Response.BoundaryType ==
BoundaryType
.Chunked;
475
else if (_requestContext.Response.BoundaryType ==
BoundaryType
.ContentLength)
485
if (endOfRequest && _requestContext.Response.BoundaryType ==
BoundaryType
.Close)
557
else if (_requestContext.Response.HasComputedHeaders && _requestContext.Response.BoundaryType ==
BoundaryType
.ContentLength
666
var chunked = _requestContext.Response.BoundaryType ==
BoundaryType
.Chunked;